FastRandomNextInt64 Method
Returns a non-negative random 64-bit integer that is less than
Int64.MaxValue.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public override long NextInt64()
Public Overrides Function NextInt64 As Long
public:
virtual long long NextInt64() override
abstract NextInt64 : unit -> int64
override NextInt64 : unit -> int64
Return Value
Int64A 64-bit signed integer that is greater than or equal to 0 and less than
Int64.MaxValue.
Starting with version 6.0.0 the behavior of this method has been changed to be conform with the behavior
of the
Random.NextInt64 method introduced in .NET 6.0 so it returns the same range.
Use the
SampleInt64 method to obtain any
Int64 value.