Answers for "enum value from string"

C#
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
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
1

enum value to string

class Program.
static void Main(string[] args)
{
   Enum wkday = Weekday.Friday;
   Console.WriteLine("Enum string is '{0}'", wkday.ToString());
   Console.ReadKey();
}
Posted by: Guest on February-23-2021

C# Answers by Framework

Browse Popular Code Answers by Language