C# Convert ToChar(Byte)
Description
Convert ToChar(Byte)
converts the value of the specified
8-bit unsigned integer to its equivalent Unicode character.
Syntax
Convert.ToChar(Byte)
has the following syntax.
public static char ToChar(
byte value
)
Parameters
Convert.ToChar(Byte)
has the following parameters.
value
- The 8-bit unsigned integer to convert.
Returns
Convert.ToChar(Byte)
method returns A Unicode character that is equivalent to value.
Example
The following example converts an array of unsigned bytes to Char values.
/* w ww . j a v a2 s.c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
byte[] bytes = {Byte.MinValue, 40, 80, 120, 180, Byte.MaxValue};
char result;
foreach (byte number in bytes)
{
result = Convert.ToChar(number);
Console.WriteLine("{0} converts to '{1}'.", number, result);
}
}
}
The code above generates the following result.