I have an enum as follows:
Public Enum myData
FirstData = 6
SecondData = 7
end enum
Is there anyway that I can return the Enum names by their value, i.e., I
want to input 6 into a function and return the name "FirstData"
Thanks.
--
Dennis in Houston
Public Enum myData
FirstData = 6
SecondData = 7
end enum
Is there anyway that I can return the Enum names by their value, i.e., I
want to input 6 into a function and return the name "FirstData"
Thanks.
--
Dennis in Houston
Comment