C# Convert ToString(UInt32)
Description
Convert ToString(UInt32)
converts the value of the specified
32-bit unsigned integer to its equivalent string representation.
Syntax
Convert.ToString(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]
public static string ToString(
uint value
)
Parameters
Convert.ToString(UInt32)
has the following parameters.
value
- The 32-bit unsigned integer to convert.
Returns
Convert.ToString(UInt32)
method returns The string representation of value.
Example
//from w w w . ja v a 2 s . c o m
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToString((UInt32)123));
}
}
The code above generates the following result.