Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class NullPrueba
- {
- static void Main()
- {
- Punto punto = null;
- Console.WriteLine(punto == null); // True
- // Al intentar acceder a un dato miembro del objeto null
- // en tiempo de ejecución se generará un error
- // (una excepción NullReferenceException se lanza)
- Console.WriteLine(punto.X);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement