enum get the value c# code example
Example 1: get enum value c#
int something = (int) Question.Role;
Example 2: enum get all values C#
//typed
var values = Enum.GetValues(typeof(Foos)).Cast<Foos>()
int something = (int) Question.Role;
//typed
var values = Enum.GetValues(typeof(Foos)).Cast<Foos>()