//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
int something = (int) Question.Role;
nameof(Weekdays.Monday) // Returns "Monday"
string name=(weekdays)2;//returns weekdays which has value 2.Here weekdays is enum name