Answers for "string to enum convert c#"

C#
6

string to enum c#

Enum.TryParse("Active", out StatusEnum myStatus);
Posted by: Guest on April-07-2020
1

C# .net core convert string to enum

var foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
if (Enum.IsDefined(typeof(YourEnum), foo))
{
    return foo;
}
Posted by: Guest on April-27-2020
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