Click or drag to resize

RandomGeneratorULong Method (UInt64, UInt64)

Get a random UInt64.

Namespace:  WhetStone.Random
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public virtual ulong ULong(
	ulong min,
	ulong max
)

Parameters

min
Type: SystemUInt64
The minimum value that can be returned. inclusive.
max
Type: SystemUInt64
The maximum value that can be returned. exclusive.

Return Value

Type: UInt64
A randomly generated UInt64 between min and max.
See Also