Click or drag to resize

RandomExtensionsNextInt32s(Random, Int32) Method

Fills an array with uniform random 32-bit signed integers greater than or equal to zero and less than MaxValue.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void NextInt32s(
	this Random rnd,
	int[] values
)

Parameters

rnd  Random
The random number generator.
values  Int32
The array to fill with random values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This extension is thread-safe if and only if called on an random number generator provided by Math.NET Numerics or derived from the RandomSource class.
See Also