 | RandomUtilsRangeDouble Method |
Returns a random double number between the specified minimum and maximum (exclusive).
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static double RangeDouble(
double min,
double max
)
Public Shared Function RangeDouble (
min As Double,
max As Double
) As Double
public:
static double RangeDouble(
double min,
double max
)
static member RangeDouble :
min : float *
max : float -> float
Parameters
- min
- Type: SystemDouble
Minimum value. - max
- Type: SystemDouble
Maximum value (exclusive).
Return Value
Type:
DoubleRandom double number between the specified minimum and maximum (exclusive).
See Also