I want to have an array of my Class, but how would I use
Dim xxx as new myClass
with it.
Printable View
I want to have an array of my Class, but how would I use
Dim xxx as new myClass
with it.
VB Code:
Dim MyArray(10) As New MyClass
I do not know how many will be created so I need to ReDim the array.