Mono Class Library: Overview

System.Double: Members

The members of System.Double are listed below.

See Also: Inherited members from System.ValueType

Public Fields

const
Epsilondouble (4.94065645841247E-324). Represents the smallest positive double value greater than zero.
const
MaxValuedouble (1.79769313486232E+308). Contains the maximum positive value for the double type.
const
MinValuedouble (-1.79769313486232E+308). Contains the minimum (most negative) value for the double type.
const
NaNdouble (NaN). Represents an undefined result of operations involving double .
const
NegativeInfinitydouble (-Infinity). Represents a negative infinity of type double .
const
PositiveInfinitydouble (Infinity). Represents a positive infinity of type double .

Public Methods

CompareTo(double) : int
Returns the sort order of the current instance compared to the specified double .
CompareTo(object) : int
Returns the sort order of the current instance compared to the specified object .
Equals(double) : bool
Determines whether the current instance and the specified double represent the same value.
override
Equals(object) : bool
Determines whether the current instance and the specified object represent the same type and value.
override
GetHashCode() : int
Generates a hash code for the current instance.
GetTypeCode() : TypeCode
Documentation for this section has not yet been entered.
static
IsInfinity(double) : bool
Determines whether the specified double represents an infinity, which can be either positive or negative.
static
IsNaN(double) : bool
Determines whether the value of the specified double is undefined (Not-a-Number).
static
IsNegativeInfinity(double) : bool
Determines whether the specified double represents a negative infinity value.
static
IsPositiveInfinity(double) : bool
Determines whether the specified double represents a positive infinity value.
static
Parse(string) : double
Returns the specified string converted to a double value.
static
Parse(string, System.Globalization.NumberStyles) : double
Returns the specified string converted to a double value.
static
Parse(string, IFormatProvider) : double
Returns the specified string converted to a double value.
static
Parse(string, System.Globalization.NumberStyles, IFormatProvider) : double
Returns the specified string converted to a double value.
override
ToString() : string
Returns a string representation of the value of the current instance.
ToString(IFormatProvider) : string
Returns a string representation of the value of the current instance.
ToString(string) : string
Returns a string representation of the value of the current instance.
ToString(string, IFormatProvider) : string
Returns a string representation of the value of the current instance.
static
TryParse(string, out double) : bool
Documentation for this section has not yet been entered.
static
TryParse(string, System.Globalization.NumberStyles, IFormatProvider, out double) : bool
Documentation for this section has not yet been entered.

Explicitly Implemented Interface Members

IConvertible.ToBooleanDocumentation for this section has not yet been entered.
IConvertible.ToByteDocumentation for this section has not yet been entered.
IConvertible.ToCharDocumentation for this section has not yet been entered.
IConvertible.ToDateTimeDocumentation for this section has not yet been entered.
IConvertible.ToDecimalDocumentation for this section has not yet been entered.
IConvertible.ToDoubleDocumentation for this section has not yet been entered.
IConvertible.ToInt16Documentation for this section has not yet been entered.
IConvertible.ToInt32Documentation for this section has not yet been entered.
IConvertible.ToInt64Documentation for this section has not yet been entered.
IConvertible.ToSByteDocumentation for this section has not yet been entered.
IConvertible.ToSingleDocumentation for this section has not yet been entered.
IConvertible.ToTypeDocumentation for this section has not yet been entered.
IConvertible.ToUInt16Documentation for this section has not yet been entered.
IConvertible.ToUInt32Documentation for this section has not yet been entered.
IConvertible.ToUInt64Documentation for this section has not yet been entered.