Answers for "convert var to enum 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# get enum value from string

//This example will parse a string to a Keys value
Keys key = (Keys)Enum.Parse(typeof(Keys), "Space");
//The key value will now be Keys.Space
Posted by: Guest on April-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language