Hacemos una verificación exhaustiva cada tutorial en nuestro espacio con el objetivo de mostrarte siempre la información más veraz y actual.
Ejemplo 1: c # obtiene el 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 # get string valor de enum
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
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)