C# Convert ToUInt16(Char)
Description
Convert ToUInt16(Char)
converts the value of the specified
Unicode character to the equivalent 16-bit unsigned integer.
Syntax
Convert.ToUInt16(Char)
has the following syntax.
[CLSCompliantAttribute(false)]
public static ushort ToUInt16(
char value
)
Parameters
Convert.ToUInt16(Char)
has the following parameters.
value
- The Unicode character to convert.
Returns
Convert.ToUInt16(Char)
method returns The 16-bit unsigned integer equivalent to value.
Example
// w ww . j a va2 s . c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToUInt16((char)123));
}
}
The code above generates the following result.