Random Source<TGenerator>.Uncached Facade.Next UInt 32 Method
Returns a random 32-bit unsigned integer, consuming a full 64-bit value.
Definition
Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
A 32-bit unsigned integer in the range [0, MaxValue].
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
public uint NextUInt32()Return Value
UInt32A 32-bit unsigned integer in the range [0, MaxValue].
Remarks
This method consumes ONE full 64-bit value from the underlying RNG and returns the upper 32 bits (bits [63:32]). The lower 32 bits (bits [31:0]) are discarded. This matches the "High" convention common in compatibility modes.