C# Convert ToUInt32(Char)
Description
Convert ToUInt32(Char)
converts the value of the specified
Unicode character to the equivalent 32-bit unsigned integer.
Syntax
Convert.ToUInt32(Char)
has the following syntax.
[CLSCompliantAttribute(false)]
public static uint ToUInt32(
char value
)
Parameters
Convert.ToUInt32(Char)
has the following parameters.
value
- The Unicode character to convert.
Returns
Convert.ToUInt32(Char)
method returns A 32-bit unsigned integer that is equivalent to value.
Example
//ww w . j a va 2s . c om
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToUInt32('a'));
}
}
The code above generates the following result.