I have a Enum like this:
public enum PromotionTypes { Unspecified = 0, InternalEvent = 1, ExternalEvent = 2, GeneralMailing = 3, VisitBas
Maybe you want to check and use the enum of the string value:
string strType; if(Enum.TryParse(strType, out MyEnum myEnum)) { // use myEnum }