In Visual Basic.Net, After a Structure is made, eg:
structure MyStructure
dim var1 as integer
dim var2 as integer
end structure
**** How do I create an array, lets say if size 5, as a MyStructure type? I cannot find this anywhere.
Thanks,
Spectrum
Printable View
In Visual Basic.Net, After a Structure is made, eg:
structure MyStructure
dim var1 as integer
dim var2 as integer
end structure
**** How do I create an array, lets say if size 5, as a MyStructure type? I cannot find this anywhere.
Thanks,
Spectrum
VB Code:
Public Structure Tester Public Item1 As Integer Public Item2 As Integer End Structure Public Testers() As Tester