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

原文地址:https://www.cnblogs.com/hong01072/p/15626434.html