c# enum get value code example
Example 1: c# enum.getvalues
enum Colors { Red, Green, Blue };
enum Styles { Plaid = 0, Striped = 23, Tartan = 65 };
public static void Main() {
foreach(int i in Enum.GetValues(typeof(Colors)))
Console.WriteLine(i);
foreach(int i in Enum.GetValues(typeof(Styles)))
Console.WriteLine(i);
}
Example 2: c# get enum name from value
string name=(weekdays)2;
Example 3: get enum value c#
int something = (int) Question.Role;
Example 4: c# get value of object in enum
arrayName variable = (arrayName) index
Days day = (Days)3;