B
Bob
It should be simple, but I'm stuck on this one... how do you return a value for
an enum property type?
TIA,
Bob
an enum property type?
TIA,
Bob
Bob said:It should be simple, but I'm stuck on this one... how do you return a
value for an enum property type?
Bob said:An example to clarify:
Public ReadOnly Property SomeEnum() As System.Enum
Get
'How do I return RandomEnum ???
End Get
End Property
Public Enum RandomEnum
member1
member2
End Enum
Bob said:I don't want to return an Enum member. I want to return the Enum
itself.
But I guess I'll be stuck with returning its type instead. Oh
well.