UInt16.ToString Method (String)
Converts the numeric value of this instance to its equivalent string representation using the specified format.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- format
- Type: System.String
A numeric format string.
Return Value
Type: System.StringThe string representation of the value of this instance as specified by format.
| Exception | Condition |
|---|---|
| FormatException | The format parameter is invalid. |
The format parameter can be any valid standard numeric format specifier, or any combination of custom numeric format specifiers. If format is equal to String.Empty or is null, the return value of the current UInt16 object is formatted with the general format specifier ("G"). If format is any other value, the method throws a FormatException.
The .NET Framework provides extensive formatting support, which is described in greater detail in the following formatting topics:
For more information about numeric format specifiers, see Standard Numeric Format Strings and Custom Numeric Format Strings.
For more information about support for formatting in the .NET Framework, see Formatting Types.
The format of the returned string is determined by the NumberFormatInfo object for the current culture. Depending on the format parameter, this object controls symbols such as the group separator and the decimal point symbol in the output string. To provide formatting information for cultures other than the current culture, call the ToString(String, IFormatProvider) overload.
The following example displays a 16-bit unsigned integer value by using each standard format string and some custom format strings.
using System; using System.Globalization; public class Example { public static void Main() { ushort value = 21708; string[] specifiers = { "G", "C", "D3", "E2", "e3", "F", "N", "P", "X", "000000.0", "#.0", "00000000;(0);**Zero**" }; foreach (string specifier in specifiers) Console.WriteLine("{0}: {1}", specifier, value.ToString(specifier)); } } // The example displays the following output: // G: 21708 // C: $21,708.00 // D3: 21708 // E2: 2.17E+004 // e3: 2.171e+004 // F: 21708.00 // N: 21,708.00 // P: 2,170,800.00 % // X: 54CC // 000000.0: 021708.0 // #.0: 21708.0 // 00000000;(0);**Zero**: 00021708
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.