Advertisement
Fhernd

CadenasFormatoEnums.cs

Jul 18th, 2016
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. ConsoleColor rojo = ConsoleColor.Red;
  2.  
  3. // General: G o g
  4. Console.WriteLine(rojo.ToString("g"));
  5.  
  6. // Representación de suma de miembros: F o f
  7. ConsoleColor rojoAzul = ConsoleColor.Red | ConsoleColor.Blue;
  8. Console.WriteLine(rojoAzul.ToString("f"));
  9.  
  10. // Valor decimal: D o d
  11. Console.WriteLine(rojo.ToString("d"));
  12.  
  13. // Valor hexadecimal: X o x
  14. Console.WriteLine(rojo.ToString("x"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement