I will really appreciate and remain grateful to him/her who can help me for solving my problem in CLR (Common Language Runtime). It is similar like C/C++. Generally we use the below method to assign value in array.
1. int values[] = { 1,2,3,4,5,6,7,8,9 };
2. Looping.
In my program I need to use this assignment after declaration. Like below,
int values[] = { 1,2,3,4,5,6,7,8,9 };
values[] = { 10,20,30,40,50,60,700,800,900 };
But it is not working.The second statement is erroneous said by compiler.I do not want to use looping. Is there any way to assign array value in second bracket after declaring the array? Please help me. Thanks.