Dear Code Gurus,

I have a text file containing a rectangular block of double data and would like to read those data into double array (in C# project).
It seems that I could start with StreamReader and read each line from this file into a String. What should I do with the String to convert it to double after that?

Thank you for your help.