NullReferenceException Exception : Buildin Exceptions : Development Class C# Source Code


Custom Search

C# Source Code » Development Class » Buildin Exceptions »

 

NullReferenceException Exception








    

using System;
   
class MyClass {
    public int Value;
}
   
class MainClass
{
    public static void Main()
    {
        try
        {
            MyClass MyObject = new MyClass();
            MyObject = null;
   
            MyObject.Value = 123;
   
            // wait for user to acknowledge the results
            Console.WriteLine("Hit Enter to terminate...");
            Console.Read();
        }
        catch(NullReferenceException)
        {
            Console.WriteLine("Cannot reference a null object.");
   
            // wait for user to acknowledge the results
            Console.Read();
        }
    }
}

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Development Class
» Buildin Exceptions