public static string Traditional2Simplified(string str)
        { //繁体转简体 
            string s = (Microsoft.VisualBasic.Strings.StrConv(str, Microsoft.VisualBasic.VbStrConv.SimplifiedChinese, 0x0804));
            return s;
        }
        public static string Simplified2Traditional(string str)
        { //简体转繁体

            return (Microsoft.VisualBasic.Strings.StrConv(str as String, Microsoft.VisualBasic.VbStrConv.TraditionalChinese, 0x0804));

        }

相关文章:

  • 2021-09-29
  • 2022-12-23
  • 2021-12-04
  • 2021-10-29
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-12-10
  • 2022-12-23
相关资源
相似解决方案