Hi GURU,
What is the fastest way to convert string array to double array? Currently, I am doing this:This is very slow for big array (about 3 millions).Code:... ... ... double[] arrDouble = new double[arrString.Length]; for(int i=0; i<arrString.Length; i++) { arrDouble[i] = double.Parse(arrString[i]); } ... ... ...
Any idea?
Thanks GURU for any help.
Cheers![]()




Reply With Quote