efficient / easy way to convert an Excel.Range to a double[,]
While I don't have the environment to do the C# stuff in Excel -
value2 returns a jagged array
So, this should work
double[][] values = (double[][])excel_range.Value2
Does this help?
Kalpesh
|