Mono Class Library: Overview

System.Single: Members

The members of System.Single are listed below.

See Also: Inherited members from System.ValueType

Public Fields

const
Epsilonfloat (1.401298E-45). Represents the smallest positive float value greater than zero.
const
MaxValuefloat (3.402823E+38). Contains the maximum positive value for the float type.
const
MinValuefloat (-3.402823E+38). Contains the minimum (most negative) value for the float type.
const
NaNfloat (NaN). Represents an undefined result of operations involving float .
const
NegativeInfinityfloat (-Infinity). Represents a negative infinity of type float .
const
PositiveInfinityfloat (Infinity). Represents a positive infinity of type float.

Public Methods

CompareTo(object) : int
Returns the sort order of the current instance compared to the specified object .
CompareTo(float) : int
Returns the sort order of the current instance compared to the specified float .
override
Equals(object) : bool
Determines whether the current instance and the specified object represent the same type and value.
Equals(float) : bool
Determines whether the current instance and the specified float represent the same 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(float) : bool
Determines whether the specified float represents an infinity, which can be either positive or negative.
static
IsNaN(float) : bool
Determines whether the value of the specified float is undefined (Not-a-Number).
static
IsNegativeInfinity(float) : bool
Determines whether the specified float represents a negative infinity value.
static
IsPositiveInfinity(float) : bool
Determines whether the specified float represents a positive infinity value.
static
Parse(string) : float
Returns the specified string converted to a float value.
static
Parse(string, System.Globalization.NumberStyles) : float
Returns the specified string converted to a float value.
static
Parse(string, IFormatProvider) : float
Returns the specified string converted to a float value.
static
Parse(string, System.Globalization.NumberStyles, IFormatProvider) : float
Returns the specified string converted to a float 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 float) : bool
Documentation for this section has not yet been entered.
static
TryParse(string, System.Globalization.NumberStyles, IFormatProvider, out float) : 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.