c# enum get value from key code example
Example 1: get key from c# enum for specific value
enum myEnum { firstValue: 1, secondValue 2, thirdValue = 3};
string text = Enum.GetName(typeof(myEnum), 2); // text is "secondValue"
Example 2: get enum value c#
int something = (int) Question.Role;