ashishraj14
Programmer
I have an enumeration as follows
Public Enum Delimiters
Tab
Semicolon
Comma
Space
End Enum
How can I return character equivalent of the elements in the enumeration?
Should I write a Function which checks each element and return character equivalent or is there any other way as well?
Thanks
Public Enum Delimiters
Tab
Semicolon
Comma
Space
End Enum
How can I return character equivalent of the elements in the enumeration?
Should I write a Function which checks each element and return character equivalent or is there any other way as well?
Thanks