public static void Main()
System.Diagnostics.Stopwatch swConvert = new System.Diagnostics.Stopwatch();
for (int i = 0; i < char.MaxValue; i++)
char c = Convert.ToChar(i);
Console.WriteLine("Convert: {0}", swConvert.Elapsed);
System.Diagnostics.Stopwatch swCast = new System.Diagnostics.Stopwatch();
for (int i = 0; i < char.MaxValue; i++)
char c = unchecked ((char)i);
Console.WriteLine("Cast: {0}", swCast.Elapsed);