UInt32.ToString Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Updated: May 2010

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 for the current culture. The string representation of the UInt32 value consists of a sequence of digits ranging from 0 to 9 without leading zeros.

NoteNote:

Because the UInt32 data type is not supported on the Macintosh OS X operating system, the string representation of a UInt32 value may be different from those of the other .NET Framework numeric types that are supported by OS X.

To define the formatting of the 32-bit unsigned integer value's string representation, call the ToString(String) method.

Examples

The following example displays a UInt32 value by using the default ToString() method. It also displays the string representations of the UInt32 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 UInteger = 1632490
      ' 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,16}", _
                           format, value.ToString(format)) & vbCrLf
      Next
   End Sub
End Module
' The example displays the following output:
'       1632490
'       
'       G format specifier:          1632490
'       C format specifier:    $1,632,490.00
'       D format specifier:          1632490
'       F format specifier:       1632490.00
'       N format specifier:     1,632,490.00
'       X format specifier:           18E8EA
using System;

public class Example
{
   public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {
      uint value = 1632490;
      // 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,16}",
                           format, value.ToString(format)) + "\n";
   }
}
// The example displays the following output:
//       1632490
//       
//       G format specifier:          1632490
//       C format specifier:    $1,632,490.00
//       D format specifier:          1632490
//       F format specifier:       1632490.00
//       N format specifier:     1,632,490.00
//       X format specifier:           18E8EA

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.

Change History

Date

History

Reason

May 2010

Revised extensively.

Information enhancement.