C# Convert ToChar(UInt32)
Description
Convert ToChar(UInt32)
converts the value of the specified
32-bit unsigned integer to its equivalent Unicode character.
Syntax
Convert.ToChar(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]
public static char ToChar(
uint value
)
Parameters
Convert.ToChar(UInt32)
has the following parameters.
value
- The 32-bit unsigned integer to convert.
Returns
Convert.ToChar(UInt32)
method returns A Unicode character that is equivalent to value.
Example
The following example converts each element in an array of unsigned integers to a Char value.
// ww w . j av a 2s. c o m
using System;
public class MainClass{
public static void Main(String[] argv){
uint[] numbers = { UInt32.MinValue, 40, 160, 255, 1028,
2011, 30001, 1234567, Int32.MaxValue };
char result;
foreach (uint number in numbers)
{
try {
result = Convert.ToChar(number);
Console.WriteLine("{0} converts to '{1}'.", number, result);
}
catch (OverflowException) {
Console.WriteLine("{0} is outside the range of the Char data type.",
number);
}
}
}
}
The code above generates the following result.