I collect a data out of a excel sheet like this (using Interop Excel):
var tmp = WorkSheet.Range["G2", "AG2"].Value2;
Now my problem is that I can't get to the data because the type of tmp is object {object[,]}
. How can i get access to the data?