Redim problem while porting vb6 arrays

ram123

Member
Joined
Mar 25, 2008
Messages
5
Programming Experience
1-3
Hi
i'm trying to convert vb6 application to vb.net.
In vb6 the arrays are declared as single dimension arrays and used as multi dimension.
example: dim a()
and used as redim a(,)
But how the same is possible in vb.net.

Please help me

Thanks in advance.
 
I think I've already answered this at another forum but here goes anyway. The same isn't possible in VB.NET. If you want a 2D array then declare a 2D array. It's that simple.
 
Back
Top