Answers for "change from string to enum in model existing attribute"

C#
6

string to enum c#

Enum.TryParse("Active", out StatusEnum myStatus);
Posted by: Guest on April-07-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
0

how to pass string value to enum in c#

MyEnum myEnum = (MyEnum)Enum.Parse(typeof(MyEnum), myString);
Posted by: Guest on December-11-2020

C# Answers by Framework

Browse Popular Code Answers by Language