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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version