System.UInt16.ToString Method

Converts the numeric value of this instance to its equivalent string representation using the specified format.

Syntax

public string ToString (string format)

Parameters

format
A numeric format string.

Returns

The string representation of the value of this instance as specified by format.

Exceptions

TypeReason
FormatException format is invalid.

Remarks

The ushort.ToString(string) method formats a ushort value in a specified format by using a System.Globalization.NumberFormatInfo object that represents the conventions of the current culture. If you want to use the default ("G", or general) format or specify a different culture, use the other overloads of the ushort.ToString(string) method, as follows:

Default ("G") format

Default (current) culture

ushort.ToString

Default ("G") format

A specific culture

ushort.ToString(IFormatProvider)

A specific format

A specific culture

ushort.ToString(string, IFormatProvider)

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 ushort 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:

The format of the returned string is determined by the System.Globalization.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 ushort.ToString(string, IFormatProvider) overload.

Example

This example demonstrates converting a ushort to a string.

C# Example

using System;
public class UInt16ToStringExample {
   public static void Main() {
      UInt16 i = 16;
      Console.WriteLine(i);
      String[] formats = {"c", "d", "e", "f", "g", "n", "p", "x" };
      foreach(String str in formats)
         Console.WriteLine("{0}: {1}", str, i.ToString(str));
   }
}

The output is

16
c: $16.00
d: 16
e: 1.600000e+001
f: 16.00
g: 16
n: 16.00
p: 1,600.00 %
x: 10

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0