Aura.Tests.Data.ColorMapTests.TestRandom.Next C# (CSharp) Method

Next() public method

public Next ( int minValue, int maxValue ) : int
minValue int
maxValue int
return 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