Answers for "how to convert from string to enum"

C#
1

casting string to enum type

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 December-11-2021
0

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;
Posted by: Guest on April-14-2021

C# Answers by Framework

Browse Popular Code Answers by Language