csharp enum check in string value

Code Example - csharp enum check in string value

                
                        if (System.Enum.IsDefined(MyEnumType, MyValue))
{
    // Do something
}