Aura.Tests.Data.ColorMapTests.TestRandom.Next C# (CSharp) Метод

Next() публичный Метод

public Next ( int minValue, int maxValue ) : int
minValue int
maxValue int
Результат int
			public override int Next(int minValue, int maxValue)
			{
				return minValue + this.Next() % (maxValue - minValue);
			}
		}

Same methods

ColorMapTests.TestRandom::Next ( ) : int
ColorMapTests.TestRandom::Next ( int maxValue ) : int
ColorMapTests.TestRandom