Answers for "how to convert string to enum c#"

C#
1

C#: casting string to enum object

public static T ToEnum<T>(this string value, T defaultValue) 
{
    if (string.IsNullOrEmpty(value))
    {
        return defaultValue;
    }

    T result;
    return Enum.TryParse<T>(value, true, out result) ? result : defaultValue;
}
Posted by: Guest on January-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language