c# get enum element by index code example
Example: get enum by index c#
//Returns the enum value at the index
(EnumType)int;
//returns the string of the enum value at the index
(EnumType)int.ToString();
//Returns the enum value at the index
(EnumType)int;
//returns the string of the enum value at the index
(EnumType)int.ToString();