c# get enum from int code example
Example 1: convert int to enum c#
YourEnum foo = (YourEnum)yourInt;
Example 2: get enum value c#
int something = (int) Question.Role;
Example 3: c# enum to int array
int[] b = Array.ConvertAll((int[])Enum.GetValues(typeof(TestEnum)), Convert.ToInt32);