[导入]C#实现简体中文和繁体中文的转换

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





添加 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);
        }

源码下载



无意 2007-12-27 21:54 发表评论

文章来源:http://www.cnblogs.com/wuyisky/archive/2007/12/27/1017530.html
posted @ 2007-12-27 21:54  HappyQQ  阅读(211)  评论(0)    收藏  举报