ScalarGenerator32<TEngine>.NextUInt32 Method

Generates the next 32-bit unsigned integer.

Definition

Namespace: Numerics.NET.Random.Generators
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public uint NextUInt32()

Return Value

UInt32
A UInt32 value in the range [0, 2^32).

Implements

IRandomGenerator.NextUInt32()

Remarks

This method advances the generator state by one unit appropriate to the underlying engine. Successive calls produce independent values from the generator's sequence.

See Also