SeedSequence.NextUInt64 Method

Generates the next 64-bit unsigned integer from the entropy stream.

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public virtual ulong NextUInt64()

Return Value

UInt64
A 64-bit unsigned integer.

Remarks

This is a convenience method derived from NextUInt32(). The 64-bit value is formed by packing two consecutive 32-bit values in little-endian order.

See Also