I have a class called Questions (plural). In this class there is an enum called Question (singular) which looks like this.
Questions
Question
public e
It's easier than you think - an enum is already an int. It just needs to be reminded:
int y = (int)Question.Role; Console.WriteLine(y); // Prints 2