C#利用微软自带库进行中文繁体和简体之间的转换的代码

做工程之余,将做工程过程比较重要的代码备份一次,如下资料是关于C#利用微软自带库进行中文繁体和简体之间的转换的代码,应该是对码农有所帮助。

 protected void Button1_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txt_value.Text))
     {
         return;
     }
     else
     {
         string value = txt_value.Text.Trim();
         string newValue = StringConvert(value, "1");
         if (!string.IsNullOrEmpty(newValue))
         {
             TextArea1.Value = newValue;
         }
     }
 }
 protected void Button2_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txt_value.Text))
     {
         return;
     }
     else
     {
         string value = txt_value.Text.Trim();
         string newValue = StringConvert(value, "2");
         if (!string.IsNullOrEmpty(newValue))
         {
             TextArea1.Value = newValue;
         }
     }
 }

 #region IString 成员

 public string StringConvert(string x, string type)
 {
     String value = String.Empty;
     switch (type)
     {
             value =  Microsoft.VisualBasic.Strings.StrConv(x, Microsoft.VisualBasic.VbStrConv.TraditionalChinese,0);
             break;
         case "2":
             value = Microsoft.VisualBasic.Strings.StrConv(x, Microsoft.VisualBasic.VbStrConv.SimplifiedChinese, 0);
             break;
         default:
             break;
     }
     return value;
 }

 #endregion
上一篇:通过注解的方式实现对象指定属性前后对比记录


下一篇:Vue父组件向子组件传递一个动态的值,保持实时更新