View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming, microsoft.public.dotnet.languages.csharp
Kalpesh[_2_] Kalpesh[_2_] is offline
external usenet poster
 
Posts: 15
Default 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