string to enum code example

Example 1: string to enum c# 3

StatusEnum MyStatus = (StatusEnum) Enum.Parse(typeof(StatusEnum), "Active", true);

Example 2: string to enum c#

Enum.TryParse("Active", out StatusEnum myStatus);

Example 3: 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;
}

Example 4: C# .net core convert string to enum

var foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
if (Enum.IsDefined(typeof(YourEnum), foo))
{
    return foo;
}

Example 5: cs string to enum

using System;
//Enum.Parse(Type enumType, String value, Boolean ignoreCase=false)
(T) Enum.Parse(typeof(T), value, true);
// or
T result;
Enum.TryParse<T>(value, true, out result) ? result : defaultValue;

Example 6: string to enum java

EnumType.valueOf(yourString)