Convert.ToString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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(Boolean) | Converts the value of the specified Boolean 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 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(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 value of the specified Boolean to its equivalent String representation. |
|
ToString(Byte, IFormatProvider) | Converts the value of the specified 8-bit unsigned integer to its equivalent String representation. |
|
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. |
|
ToString(DateTime, IFormatProvider) | Converts the value of the specified DateTime to its equivalent String representation. |
|
ToString(Decimal, IFormatProvider) | Converts the value of the specified Decimal number to its equivalent String representation. |
|
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. |
|
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. |
|
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. |
|
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. |
|
ToString(Single, IFormatProvider) | Converts the value of the specified single-precision floating point number to its equivalent String representation. |
|
ToString(UInt16, IFormatProvider) | Converts the value of the specified 16-bit unsigned integer to its equivalent String representation. |
|
ToString(UInt32, IFormatProvider) | Converts the value of the specified 32-bit unsigned integer to its equivalent String representation. |
|
ToString(UInt64, IFormatProvider) | Converts the value of the specified 64-bit unsigned integer to its equivalent String representation. |
Show: