A
Armin Bajramovic
Hi,
I have enum:
public enum StatusEnum
{
Active = 'A',
Nonactive = 'N',
Deleted = 'D'
}
The strange thing is that both Enum.GetNames(typeof(StatusEnum)) and
Enum.GetValues(typeof(StatusEnum)) methods return same thing - names. How do
I get enum values ('A', 'N', 'D')?
TIA
Armin
I have enum:
public enum StatusEnum
{
Active = 'A',
Nonactive = 'N',
Deleted = 'D'
}
The strange thing is that both Enum.GetNames(typeof(StatusEnum)) and
Enum.GetValues(typeof(StatusEnum)) methods return same thing - names. How do
I get enum values ('A', 'N', 'D')?
TIA
Armin