BalloonsPop.LogicProvider.RandomNumberGenerator.Next C# (CSharp) Method

Next() public method

Generates random byte values in the given range, right inclusive.
public Next ( int min, int max ) : byte
min int Minimum for result, inclusive.
max int Maximum for result, exclusive.
return byte
        public byte Next(int min, int max)
        {
            return (byte)this.rnd.Next(min, max);
        }
RandomNumberGenerator