Single Methods
.NET Framework 2.0
| Name | Description | |
|---|---|---|
| CompareTo | Overloaded. Compares this instance to a specified object and returns an indication of their relative values. |
| Equals | Overloaded. Overridden. Returns a value indicating whether two instances of Single represent the same value. |
| GetHashCode | Overridden. Returns the hash code for this instance. |
| GetType | Gets the Type of the current instance. (Inherited from Object.) |
| GetTypeCode | Returns the TypeCode for value type Single. |
| IsInfinity | Returns a value indicating whether the specified number evaluates to negative or positive infinity. |
| IsNaN | Returns a value indicating whether the specified number evaluates to not a number (NaN). |
| IsNegativeInfinity | Returns a value indicating whether the specified number evaluates to negative infinity. |
| IsPositiveInfinity | Returns a value indicating whether the specified number evaluates to positive infinity. |
| Parse | Overloaded. Converts the string representation of a number to its single-precision floating-point number equivalent. |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (Inherited from Object.) |
| ToString | Overloaded. Overridden. Converts the numeric value of this instance to its equivalent string representation. |
| TryParse | Overloaded. Converts the string representation of a number to its single-precision floating-point number equivalent. A return code indicates whether the conversion succeeded or failed. |
Top