Check out example codes for "get enum value c#". It will help you in understanding the concepts better.
Code Example 1
int something = (int) Question.Role;
Code Example 2
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);
}
// OUTPUT:
// 0
// 1
// 2
//
// 0
// 23
// 65
Code Example 3
//This example will parse a string to a Keys value
Keys key = (Keys)Enum.Parse(typeof(Keys), "Space");
//The key value will now be Keys.Space
Learn ReactJs, React Native from akashmittal.com