Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 19, 2016 03:41
Show Gist options
  • Save Fhernd/207e3132b107387628022028d55e507e to your computer and use it in GitHub Desktop.
Save Fhernd/207e3132b107387628022028d55e507e to your computer and use it in GitHub Desktop.
Cadenas de caracteres de formato para enumeraciones. [OrtizOL]
ConsoleColor rojo = ConsoleColor.Red;
// General: G o g
Console.WriteLine(rojo.ToString("g"));
// Representación de suma de miembros: F o f
ConsoleColor rojoAzul = ConsoleColor.Red | ConsoleColor.Blue;
Console.WriteLine(rojoAzul.ToString("f"));
// Valor decimal: D o d
Console.WriteLine(rojo.ToString("d"));
// Valor hexadecimal: X o x
Console.WriteLine(rojo.ToString("x"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment