Argument Null Exception : Buildin Exceptions « Development Class « C# / C Sharp






Argument Null Exception

 
using System;

class ArgumentNullTest {
 public static void Main() {
   String[] s = null;
   String sep = " ";
   try {
     String j = String.Join(sep,s);
   }
   catch (ArgumentNullException e) {
      Console.WriteLine("Error: {0}",e);
   }
 }
}

           
         
  








Related examples in the same category

1.Throw and Catch an IO exception because the file zxcvb.data doesn't exist
2.OutOfMemoryException Exception
3.StackOverflowException Exception
4.NullReferenceException Exception
5.InvalidCastException Exception
6.IndexOutOfRangeException Exception
7.OverflowException Exception
8.Throw Index Out Of Range Exception
9.Throw Null reference Exception
10.Throw Invalid Operation Exception
11.Throw Argument Out Of Range Exception
12.ArgumentException is thrown when one of the arguments provided to a method is not valid.
13.OverflowException