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

NextInt32() public method

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

Same methods

Random2::NextInt32 ( int maxExclusive ) : int