Advertisement
Fhernd

SistemaTiposUnificado.cs

Jul 18th, 2014
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. class SistemaTiposUnificado
  2. {
  3.   public static void PruebaSistemaTipoUnificado()
  4.   {
  5.     bool listo = false;
  6.  
  7.     Console.WriteLine(String.Format("Valor de `listo`: {0}", listo.ToString()));
  8.  
  9.     DateTime fechaHora = new DateTime();
  10.  
  11.     Console.WriteLine(String.Format("Valor de `fechaHora`: {0}", fechaHora.ToString()));
  12.  
  13.     Console.ReadKey();
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement