Luego de de esta prolongada compilación de información hemos podido resolver esta dificultad que tienen muchos lectores. Te ofrecemos la respuesta y nuestro deseo es servirte de mucha ayuda.
Ejemplo 1: c# obtener valor de enumeración de string
//This example will parse a string to a Keys valueKeys key =(Keys)Enum.Parse(typeof(Keys),"Space");//The key value will now be Keys.Space
Ejemplo 2: c# obtener string valor de la enumeración
usingSystem;publicclassGetNameTestenumColors Red, Green, Blue, Yellow ;enumStyles Plaid, Striped, Tartan, Corduroy ;publicstaticvoidMain()
Console.WriteLine("The 4th value of the Colors Enum is 0", Enum.GetName(typeof(Colors),3));
Console.WriteLine("The 4th value of the Styles Enum is 0", Enum.GetName(typeof(Styles),3));// The example displays the following output:// The 4th value of the Colors Enum is Yellow// The 4th value of the Styles Enum is Corduroy
Ejemplo 3: obtener key de C# enum para un valor específico
enummyEnum firstValue:1, secondValue 2, thirdValue =3;string text = Enum.GetName(typeof(myEnum),2);// text is "secondValue"
Ejemplo 4: obtener valor de enumeración C#
int something =(int) Question.Role;
Reseñas y puntuaciones del tutorial
Si guardas alguna desconfianza y capacidad de reformar nuestro noticia eres capaz de escribir una anotación y con mucho gusto lo analizaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)