BalloonsPop.LogicProvider.RandomNumberGenerator.Next C# (CSharp) 메소드

Next() 공개 메소드

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.
리턴 byte
        public byte Next(int min, int max)
        {
            return (byte)this.rnd.Next(min, max);
        }
RandomNumberGenerator