Microsoft.Silverlight.Testing.Controls.NumericExtensions.IsLessThanOrClose C# (CSharp) Method

IsLessThanOrClose() public static method

Determine if one number is less than or close to another.
public static IsLessThanOrClose ( double left, double right ) : bool
left double First number.
right double Second number.
return bool
        public static bool IsLessThanOrClose(double left, double right)
        {
            return (left < right) || AreClose(left, right);
        }