Answers for "string to enum c#"

C#
16

string to enum c# 3

StatusEnum MyStatus = (StatusEnum) Enum.Parse(typeof(StatusEnum), "Active", true);
Posted by: Guest on May-19-2020
5

string to enum c#

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

String to enum C#

string str = "Dog";
Animal animal = (Animal)Enum.Parse(typeof(Animal), str);  // Animal.Dog
Animal animal = (Animal)Enum.Parse(typeof(Animal), str, true); // case insensitive
Posted by: Guest on August-05-2021
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
0

c# convert string to enum value

using System;

Enum.tryParse("input", out EnumName myEnum);
Posted by: Guest on May-25-2021

C# Answers by Framework

Browse Popular Code Answers by Language