Click or drag to resize

RandMTRandUint32 Method

Generates a random unsigned integer in the interval [0,0xFFFFFFFF]. This methods was a public function in the original C code, so it remains here as a reference. It is not part of the standard Random class interface.

Namespace: Orthogonal.Common.Basic.PRNG
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 2024-04-15 18:00 GMT+10.f27da1471008deaf16b803c17e24a5955690aef1
Syntax
C#
public uint RandUint32()

Return Value

UInt32
A random unsigned integer in the range [0,0xFFFFFFFF].
Remarks
This is the core method that is used to generate other random numbers in different normalized ranges.
See Also