The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
See Also: ArgumentOutOfRangeException Members
ArgumentOutOfRangeException is thrown when a method is invoked and at least one of the arguments passed to the method is not null and does not contain a valid value.
ArgumentOutOfRangeException is used extensively by:
Classes in the System.Collections and System.IO namespaces.
The Array class.
ArgumentOutOfRangeException behaves identically to ArgumentException. It is provided so that application code can differentiate between exceptions caused by invalid arguments that are not null, and exceptions caused by null arguments. For errors caused by null arguments, see ArgumentNullException.
ArgumentOutOfRangeException uses the HRESULT COR_E_ARGUMENTOUTOFRANGE, which has the value 0x80131502.
For a list of initial property values for an instance of ArgumentOutOfRangeException, see the ArgumentOutOfRangeException constructors.
The following example demonstrates an error that causes the Array class to throw a ArgumentOutOfRangeException exception.
C# Example
using System; class ArgOutOfRangeExample { public static void Main() { int[] array1 = {0,0}; int[] array2 = {0,0}; try { Array.Copy(array1,array2,-1); } catch (ArgumentOutOfRangeException e) { Console.WriteLine("Error: {0}",e); } } }
The output is
Error: System.ArgumentOutOfRangeException: Non-negative number required.