I am unable to assign dynamic value to an array which is double. If i keep it static, I am able to do it. Help me out.
I have defined a array as double whose size could be dynamic. Then I calculated some value and want to assign that value to this double array.
I did..
double[] entropy_db_col;
But I am getting an error. array out of index.
If i calculate, (double)entropy_db - (double)a, I am getting a static value.
Even if I do entropy_db_col[0] = (double)entropy_db - (double)a;, then also I am getting the error? What should I do ?
Then I want to find the largest value from this array? Is this code right ?
largest = Convert.ToInt32(entropy_db_col[0].ToString());
Please help me out.
It would be great.
I solved this, but now the problem I get is :
I get entropy_db_col[0] value, then..when I iterate and get entropy_db_col[1] value, the value of entropy_db_col[0] becomes 0. Similarly when I get entropy_db_col[2], the value of entropy_db_col[1] and entropy_db_col[0] becomes 0..what should i do ?

ibeing changed anywhere other than theforstatement? Isentropy_db_colreferred to anywhere other than you have shown? Are you creating aentropy_db_col = new double[...]every time in the loop? Double-check. – Hand-E-Food Mar 14 at 1:21