D
Dave Wurtz
All,
Is there anyway to inherit from an Enum and/or to add items to them outside
of the Enum statement?
Public Class Class1
Public Enum Test
Value1 = 1
Value 2 = 2
End Enum
End Class
Public Class Class2
inherits Class1
'How can I add class2-specific values to the Test enum?
End Class
Thanks.
Dave Wurtz
Is there anyway to inherit from an Enum and/or to add items to them outside
of the Enum statement?
Public Class Class1
Public Enum Test
Value1 = 1
Value 2 = 2
End Enum
End Class
Public Class Class2
inherits Class1
'How can I add class2-specific values to the Test enum?
End Class
Thanks.
Dave Wurtz