C# Convert ToChar(UInt64)
Description
Convert ToChar(UInt64)
converts the value of the specified
64-bit unsigned integer to its equivalent Unicode character.
Syntax
Convert.ToChar(UInt64)
has the following syntax.
[CLSCompliantAttribute(false)]
public static char ToChar(
ulong value
)
Parameters
Convert.ToChar(UInt64)
has the following parameters.
value
- The 64-bit unsigned integer to convert.
Returns
Convert.ToChar(UInt64)
method returns A Unicode character that is equivalent to value.
Example
The following example converts each element in an array of unsigned long integers to a Char value.
/*from w w w.j ava 2 s .com*/
using System;
public class MainClass{
public static void Main(String[] argv){
ulong[] numbers = { UInt64.MinValue, 40, 160, 255, 1028,
2011, 30001, 1234567, Int64.MaxValue };
char result;
foreach (ulong 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.