Copying array elements

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In working with excel, you use an object array inputData[,] to get and set
data.

If I have an object array defined as object[] rowData and it gets populated
with 53 elements, can I do the following:

inputData[0,0] = inputRow;

When looking at the debugger, inputData does get the values and I can pass
it to another function. When I write it to excel, the values don't write. So
I'm wondering if what I'm seeing in the debugger is correct.

Thanks
 
Back
Top