Click or drag to resize

RandomSourceNext(Int32, Int32) Method

Returns a random number within a specified range.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public override sealed int Next(
	int minInclusive,
	int maxExclusive
)

Parameters

minInclusive  Int32
The inclusive lower bound of the random number returned.
maxExclusive  Int32
The exclusive upper bound of the random number returned. Range: maxExclusive > minExclusive.

Return Value

Int32
A 32-bit signed integer greater than or equal to minInclusive and less than maxExclusive; that is, the range of return values includes minInclusive but not maxExclusive. If minInclusive equals maxExclusive, minInclusive is returned.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionminInclusive is greater than maxExclusive.
See Also