ByChance.Core.Random2.NextInt64 C# (CSharp) Method

NextInt64() public method

Gets the next random number in the sequence and returns it as a 64-bit signed integer.
public NextInt64 ( ) : long
return long
        public long NextInt64()
        {
            return (long)this.NextUInt64();
        }

Same methods

Random2::NextInt64 ( long maxExclusive ) : long