C#实现简体中文和繁体中文的转换

C#实现简体中文和繁体中文的转换
2008年01月24日 星期四 17:03

using Microsoft.VisualBasic;
添加 Microsoft.VisualBasic引用
///   <summary>
        ///   转换为简体中文
        ///   </summary>
        public static string ToSChinese(string str)
        {
            return Strings.StrConv(str, VbStrConv.SimplifiedChinese, 0);
        }

        ///   <summary>
        ///   转换为繁体中文
        ///   </summary>
        public static string ToTChinese(string str)
        {
            return Strings.StrConv(str, VbStrConv.TraditionalChinese, 0);
        }

转自:http://hi.baidu.com/zzticzh/blog/item/f6ddfd243e3659378644f97d.html


posted @ 2008-05-13 11:30  SCPlatform  阅读(370)  评论(0编辑  收藏  举报