Click or drag to resize

RandCustomBase.NextInt64 Method

Returns a non-negative random integer.

Namespace: Orthogonal.Common.Basic.PRNG
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 2025-03-15 14:42 GMT+11
Syntax
C#
public virtual long NextInt64()

Return Value

Int64
A 64-bit signed integer that is greater than or equal to 0 and less than MaxValue.

Implements

IRandom.NextInt64()
Remarks
This base class implementation is not very efficient, so derived classes should override this method with a superior implementation when possible.
See Also