blairacuda
Technical User
I have another easy one for all you gurus out there. I am trying to get at data in a MultiDimensional ArrayList (is that redundant?) but am struggling with the syntax and can't seem to find a good source. So I turn to you guys again.
I need to increment an int to get at the correct record at level 1. But at level 2 I know I always need record 2. But this gives me a compiler error:
The closest help I have been able to find was this:
Thanks in advance.
Chris Blair
Crystal, InstallShield, branching out in other programming realms.
I need to increment an int to get at the correct record at level 1. But at level 2 I know I always need record 2. But this gives me a compiler error:
Code:
string row = allFittingFields[i,2].ToString();
The closest help I have been able to find was this:
Code:
Response.Write((MainArray[1] as ArrayList)[0].ToString());
Thanks in advance.
Chris Blair
Crystal, InstallShield, branching out in other programming realms.