numl.Math.Range.Test C# (CSharp) Method

Test() public method

Tests.
public Test ( double d ) : bool
d double The double to process.
return bool
        public bool Test(double d)
        {
            return d >= Min && d <= Max;
        }