RandomExtensions.<G>$5AB4ABAAFA3359CDE65D50F3C2439F05.NextUInt32 Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0

Overload List

NextUInt32() Returns a random 64-bit integer.
NextUInt32(UInt32) Returns a random unsigned integer less than the specified value.

NextUInt32

Returns a random 64-bit integer.
C#
public uint NextUInt32()

Return Value

UInt32
A 64-bit unsigned integer.

NextUInt32(UInt32)

Returns a random unsigned integer less than the specified value.
C#
public uint NextUInt32(
	uint maxValue
)

Parameters

maxValue  UInt32
The exclusive upper bound of the random number to be generated.

Return Value

UInt32
A 32-bit unsigned integer that is greater than or equal to 0.

See Also