Aegis.Calculate.Randomizer.NextNumber C# (CSharp) Method

NextNumber() public static method

지정되지 않은 범위 내에서 임의 값을 반환합니다.
public static NextNumber ( ) : int
return int
        public static int NextNumber()
        {
            return _staticRand.Next();
        }

Same methods

Randomizer::NextNumber ( int min, int max ) : int