Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| using System; | |
| public class Example | |
| { | |
| public static void Main() | |
| { | |
| CallEII(); | |
| Console.WriteLine("-----"); | |
| } | |
| private static void CallEII() | |
| { | |
| // <Snippet7> | |
| int codePoint = 1067; | |
| IConvertible iConv = codePoint; | |
| char ch = iConv.ToChar(null); | |
| Console.WriteLine("Converted {0} to {1}.", codePoint, ch); | |
| // </Snippet7> | |
| } | |
| } |