using System; using Microsoft.International.Converters.TraditionalChineseToSimplifiedConverter; namespace Example_CS { class Program { static void Main(string[] args) { Console.WriteLine("The simplified format of 北京時間 is {0}.", ChineseConverter.Convert("北京時間", ChineseConversionDirection.TraditionalToSimplified)); Console.WriteLine("The traditional format of 软件 is {0}.", ChineseConverter.Convert("软件", ChineseConversionDirection.SimplifiedToTraditional)); Console.ReadLine(); } } } /* This code produces the following output with Office12 Chinese edition installed: The simplified format of 北京時間 is 北京时间. The traditional format of 软件 is 軟體. This code produces the following output without Office12 Chinese edition installed: The simplified format of 北京時間 is 北京时间. The traditional format of 软件 is 軟件.*/