Answers for "enum convert to string value in asp.net core 3.1"

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

Code answers related to "enum convert to string value in asp.net core 3.1"

C# Answers by Framework

Browse Popular Code Answers by Language