Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

Idiom #295 String to Enum

Given the enumerated type T, create a function TryStrToEnum that takes a string s as input and converts it into an enum value of type T.

Explain whether the conversion is case sensitive or not.
Explain what happens if the conversion fails.

static class StringToEnum {
  static bool TryStrToEnum<T>(
    string s, [NotNullWhen(true)] out T? eOut) where T : Enum {
    bool success = Enum.TryParse(typeof(T).GetType(), s, out var o);
    eOut = (T?)o;
    return success;
  }
}

Conversion is case sensitive.
If fails, return false.
X : T := T'Value (S);

Case-insensitive conversion of trimmed string S to enumeration type T. Constraint_Error is raised otherwise.

New implementation...
< >
Bart