Convert.ToString Method
.NET Framework 4.5
Converts the specified value to its equivalent string representation.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
ToString() | Returns a string that represents the current object. (Inherited from Object.) |
|
ToString(Boolean) | Converts the specified Boolean value to its equivalent string representation. |
|
ToString(Byte) | Converts the value of the specified 8-bit unsigned integer to its equivalent string representation. |
|
ToString(Char) | Converts the value of the specified Unicode character to its equivalent string representation. |
|
ToString(DateTime) | Converts the value of the specified DateTime to its equivalent string representation. |
|
ToString(Decimal) | Converts the value of the specified decimal number to its equivalent string representation. |
|
ToString(Double) | Converts the value of the specified double-precision floating-point number to its equivalent string representation. |
|
ToString(Int16) | Converts the value of the specified 16-bit signed integer to its equivalent string representation. |
|
ToString(Int32) | Converts the value of the specified 32-bit signed integer to its equivalent string representation. |
|
ToString(Int64) | Converts the value of the specified 64-bit signed integer to its equivalent string representation. |
|
ToString(Object) | Converts the value of the specified object to its equivalent string representation. |
|
ToString(SByte) | Converts the value of the specified 8-bit signed integer to its equivalent string representation. |
|
ToString(Single) | Converts the value of the specified single-precision floating-point number to its equivalent string representation. |
|
ToString(String) | Returns the specified string instance; no actual conversion is performed. |
|
ToString(UInt16) | Converts the value of the specified 16-bit unsigned integer to its equivalent string representation. |
|
ToString(UInt32) | Converts the value of the specified 32-bit unsigned integer to its equivalent string representation. |
|
ToString(UInt64) | Converts the value of the specified 64-bit unsigned integer to its equivalent string representation. |
|
ToString(Boolean, IFormatProvider) | Converts the specified Boolean value to its equivalent string representation. |
|
ToString(Byte, IFormatProvider) | Converts the value of the specified 8-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Byte, Int32) | Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base. |
|
ToString(Char, IFormatProvider) | Converts the value of the specified Unicode character to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(DateTime, IFormatProvider) | Converts the value of the specified DateTime to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Decimal, IFormatProvider) | Converts the value of the specified decimal number to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Double, IFormatProvider) | Converts the value of the specified double-precision floating-point number to its equivalent string representation. |
|
ToString(Int16, IFormatProvider) | Converts the value of the specified 16-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Int16, Int32) | Converts the value of a 16-bit signed integer to its equivalent string representation in a specified base. |
|
ToString(Int32, IFormatProvider) | Converts the value of the specified 32-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Int32, Int32) | Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base. |
|
ToString(Int64, IFormatProvider) | Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Int64, Int32) | Converts the value of a 64-bit signed integer to its equivalent string representation in a specified base. |
|
ToString(Object, IFormatProvider) | Converts the value of the specified object to its equivalent string representation using the specified culture-specific formatting information. |
|
ToString(SByte, IFormatProvider) | Converts the value of the specified 8-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(Single, IFormatProvider) | Converts the value of the specified single-precision floating-point number to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(String, IFormatProvider) | Returns the specified string instance; no actual conversion is performed. |
|
ToString(UInt16, IFormatProvider) | Converts the value of the specified 16-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(UInt32, IFormatProvider) | Converts the value of the specified 32-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information. |
|
ToString(UInt64, IFormatProvider) | Converts the value of the specified 64-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information. |