RoguePoet01
Programmer
Hi all,
In VB6 I found the "type" variable very useful. It was essentially a class, as far as I could tell.
Is there an equivalent in VB.net?
Would I just declare a class instead of a type?
It used to be:
Type CarType
Year as Integer
Color as String
Doors as Integer
Miles as Long
End Type
Dim Car as CarType
What's the equivalent now?
Thanks.
In VB6 I found the "type" variable very useful. It was essentially a class, as far as I could tell.
Is there an equivalent in VB.net?
Would I just declare a class instead of a type?
It used to be:
Type CarType
Year as Integer
Color as String
Doors as Integer
Miles as Long
End Type
Dim Car as CarType
What's the equivalent now?
Thanks.