Answers for "c# get enum from int"

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

c# enum to int array

int[] b = Array.ConvertAll((int[])Enum.GetValues(typeof(TestEnum)), Convert.ToInt32);
Posted by: Guest on February-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language