I try to define double arrays but their names are in a string array. Is it possible to do something like that :
string[] arrayNames = new string[] {"a", "b", "c"};
double[] arrayNames[0] ; // problem is here.I try to give names dynamically
ps: Of course this code doesn't work ;) Thanks...