C# Class Adf.Core.Extensions.DoubleExtensions

Represents an utility class to check whether a value belongs to a specified range. Provides method to check whether a value belongs to a specified range.
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
InRange ( this value, double min, double max ) : bool

Returns a value indicating whether the specified value belongs to a specified range.

Method Details

InRange() public static method

Returns a value indicating whether the specified value belongs to a specified range.
public static InRange ( this value, double min, double max ) : bool
value this The value to check.
min double The lower limit of the range.
max double The upper limit of the range.
return bool