Answers for "how to get element of an enum by his index c#"

C#
4

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();
Posted by: Guest on May-04-2020

Code answers related to "how to get element of an enum by his index c#"

C# Answers by Framework

Browse Popular Code Answers by Language