Click or drag to resize

RandomSourceNextInt32s(Int32, Int32) Method

Returns an array with random 32-bit signed integers within the specified range.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public int[] NextInt32s(
	int count,
	int maxExclusive
)

Parameters

count  Int32
The size of the array to fill.
maxExclusive  Int32
The exclusive upper bound of the random number returned. Range: maxExclusive ≥ 1.

Return Value

Int32
An array of random 32-bit signed integers in the requested range.
See Also