Click or drag to resize

SystemRandomSourceDoSampleInteger(Int32, Int32) Method

Returns a random 32-bit signed integer within the specified range.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
protected override int DoSampleInteger(
	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 ≥ minInclusive + 2 (not verified, must be ensured by caller).

Return Value

Int32
A random 32-bit signed integer greater than or equal to minInclusive and less than maxExclusive.
See Also