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