in
vb.net Arrays are created in a number of ways
Dim MyArray(2,2) as string 'creates a 3 x 3 zero based array of type string
Dim MyArray() as string 'creates an unbound array that will be bound when filled by the return of a method
Dim MyArray as String() 'same as above
or you can late bind by just declaring
Dim MyArray as object 'this should be filled using the return of a method.
> Date: Wed, 10 Jun 2009 04:40:34 -0700
> Subject: vararraycreate
> From:
fvarg...@ig.com.br> To:
SolidWo...@googlegroups.com