UInt16.ToString Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Updated: August 2009
Converts the numeric value of this instance to its equivalent string representation.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SecuritySafeCriticalAttribute> _
Public Overrides Function ToString As String
[SecuritySafeCriticalAttribute]
public override string ToString()
Return Value
Type: System.String
The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeroes.
Remarks
The return value is formatted with the general numeric format specifier ("G") and the NumberFormatInfo object for the current culture. The string representation of the UInt16 value consists of a sequence of digits ranging from 0 to 9 without leading zeros.
Note: |
---|
Because the UInt16 data type is not supported on the Macintosh OS X operating system, the string representation of a UInt16 value may be different from the string representations of .NET Framework numeric types that are supported by OS X. |
To define the formatting of the 16-bit unsigned integer value's string representation, call the ToString(String) method.
Examples
The following example displays a UInt16 value by using the default ToString() method. It also displays the string representations of the UInt16 value that results from using some standard format specifiers. The examples are displayed using the formatting conventions of the en-US culture.
Module Example
Public Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
Dim value As UInt16 = 16324
' Display value using default ToString method.
outputBlock.Text &= value.ToString() & vbCrLf
outputBlock.Text &= vbCrLf
' Define an array of format specifiers.
Dim formats() As String = {"G", "C", "D", "F", "N", "X"}
' Display value using the standard format specifiers.
For Each format As String In formats
outputBlock.Text += String.Format("{0} format specifier: {1,12}", _
format, value.ToString(format)) & vbCrLf
Next
End Sub
End Module
' The example displays the following output:
' 16324
'
' G format specifier: 16324
' C format specifier: $16,324.00
' D format specifier: 16324
' F format specifier: 16324.00
' N format specifier: 16,324.00
' X format specifier: 3FC4
using System;
public class Example
{
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
ushort value = 16324;
// Display value using default ToString method.
outputBlock.Text += value.ToString() + "\n";
outputBlock.Text += "\n";
// Define an array of format specifiers.
string[] formats = { "G", "C", "D", "F", "N", "X" };
// Display value using the standard format specifiers.
foreach (string format in formats)
outputBlock.Text += String.Format("{0} format specifier: {1,12}",
format, value.ToString(format)) + "\n";
}
}
// The example displays the following output:
// 16324
//
// G format specifier: 16324
// C format specifier: $16,324.00
// D format specifier: 16324
// F format specifier: 16324.00
// N format specifier: 16,324.00
// X format specifier: 3FC4
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also
Reference
Other Resources
Change History
Date |
History |
Reason |
---|---|---|
August 2009 |
Revised extensively. |
Information enhancement. |