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

原文链接:https://www.cnblogs.com/wuyisky/archive/2007/12/27/1017530.html

posted @ 2021-11-30 21:42  QAQhong  阅读(235)  评论(0编辑  收藏  举报