Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class NullPrueba
  2. {
  3.     static void Main()
  4.     {
  5.         Punto punto = null;
  6.  
  7.         Console.WriteLine(punto == null);   // True
  8.  
  9.         // Al intentar acceder a un dato miembro del objeto null
  10.         // en  tiempo de ejecución se generará un error
  11.         // (una excepción NullReferenceException se lanza)
  12.         Console.WriteLine(punto.X);
  13.     }
  14. }