Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 18, 2015 13:29
Show Gist options
  • Save Fhernd/5790032 to your computer and use it in GitHub Desktop.
Save Fhernd/5790032 to your computer and use it in GitHub Desktop.
class SistemaTiposUnificado
{
public static void PruebaSistemaTipoUnificado()
{
bool listo = false;
Console.WriteLine(String.Format("Valor de `listo`: {0}", listo.ToString()));
DateTime fechaHora = new DateTime();
Console.WriteLine(String.Format("Valor de `fechaHora`: {0}", fechaHora.ToString()));
Console.ReadKey();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment