IndexOutOfRangeException Exception

image_pdfimage_print
   

using System;
   
class MainClass
{
    public static void Main()
    {
        try
        {
            int [] IntegerArray = new int [5];
   
            IntegerArray[10] = 123;
   
            // wait for user to acknowledge the results
            Console.WriteLine("Hit Enter to terminate...");
            Console.Read();
        }
        catch(IndexOutOfRangeException)
        {
            Console.WriteLine("An invalid element index access was attempted.");
        }
    }
}
           
          


InvalidCastException Exception

image_pdfimage_print
   

using System;
   
class MainClass
{
    public static void Main()
    {
        try
        {
            MainClass       MyObject = new MainClass();
            IFormattable    Formattable;
   
            Formattable = (IFormattable)MyObject;
   
            // wait for user to acknowledge the results
            Console.WriteLine("Hit Enter to terminate...");
            Console.Read();
        }
        catch(InvalidCastException)
        {
            Console.WriteLine("MyObject does not implement the IFormattable interface.");
        }
    }
}
           
          


NullReferenceException Exception

image_pdfimage_print
   

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();
        }
    }
}