C#对汉语拼音,繁体简体转换的支持
摘要:
添加引用:ChineseConverter.dll(对 繁体简体转换的支持 ) ,ChnCharInfo.dll (对拼音的支持)。微软发布的补丁!测试代码如下:ChineseChar cc=new ChineseChar('捷');ReadOnlyCollection pinyin = cc.Pinyins;foreach (string item in pinyin){if (!string.IsNullOrEmpty(item)) { Console.WriteLine(item + ";"); } }string strTest="中华人. 阅读全文
posted @ 2012-05-28 16:40 refactor 阅读(659) 评论(0) 推荐(0) 编辑