Answers for "c# enums showing index"

C#
4

index of an enum 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

C# Answers by Framework

Browse Popular Code Answers by Language