C# Class numl.Math.Range

A range.
显示文件 Open project: sethjuarez/numl Class Usage Examples

Public Methods

Method Description
Range ( double min ) : System

Constructor taking only minimum value and creating slightly greated max.

Range ( double min, double max ) : System

Constructor taking min and max vaue to create Range.

Test ( double d ) : bool

Tests.

ToString ( ) : string

Returns a string that represents the current object.

Method Details

Range() public method

Constructor taking only minimum value and creating slightly greated max.
public Range ( double min ) : System
min double The minimum.
return System

Range() public method

Constructor taking min and max vaue to create Range.
public Range ( double min, double max ) : System
min double The minimum.
max double The maximum.
return System

Test() public method

Tests.
public Test ( double d ) : bool
d double The double to process.
return bool

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string