-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_CodeExceptions_ArgumentOutOfRange
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(
string argumentName,
double value,
double fromValue,
double toValue
)
VB
Public Shared Function ArgumentOutOfRange (
argumentName As String,
value As Double,
fromValue As Double,
toValue As Double
) As ArgumentOutOfRangeException
F#
static member ArgumentOutOfRange :
argumentName : string *
value : float *
fromValue : float *
toValue : float -> ArgumentOutOfRangeException
- argumentName
- Type: System.String
Name of the argument. - value
- Type: System.Double
The value. - fromValue
- Type: System.Double
From value (inclusive). - toValue
- Type: System.Double
To value (inclusive).
Type: ArgumentOutOfRangeException
Initialized instance of ArgumentOutOfRangeException.
CodeExceptions Class
ArgumentOutOfRange Overload
CodeJam Namespace