Advertisement
Fhernd

NullPrueba.cs

Aug 31st, 2015
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement