-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_CodeExceptions_ArgumentOutOfRange_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
4 revisions
Creates ArgumentOutOfRangeException.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static ArgumentOutOfRangeException ArgumentOutOfRange(
string argumentName,
int value,
int fromValue,
int toValue
)
VB
Public Shared Function ArgumentOutOfRange (
argumentName As String,
value As Integer,
fromValue As Integer,
toValue As Integer
) As ArgumentOutOfRangeException
F#
static member ArgumentOutOfRange :
argumentName : string *
value : int *
fromValue : int *
toValue : int -> ArgumentOutOfRangeException
- argumentName
- Type: System.String
Name of the argument. - value
- Type: System.Int32
The value. - fromValue
- Type: System.Int32
From value (inclusive). - toValue
- Type: System.Int32
To value (inclusive).
Type: ArgumentOutOfRangeException
Initialized instance of ArgumentOutOfRangeException.
CodeExceptions Class
ArgumentOutOfRange Overload
CodeJam Namespace