I have a combo box where I am displaying some entries like:
Equals Not Equals Less Than Greater Than
Notice that these strings contain spa
You can use the Parse method:
Operarion operation = (Operation)Enum.Parse(typeof(Operation), "Not_Equals");
Some examples here