I have an enum
enum myEnum2 { ab, st, top, under, below}
I would like to write a function to test if a given value is included in myEnum
just cast the enum as:
string something = (string)myEnum;
and now comparison is easy as you like