编程语言
首页 > 编程语言> > C#利用微软自带库进行中文繁体和简体之间的转换的代码

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

标签:string,C#,value,Microsoft,简体,繁体,txt,newValue,VisualBasic
来源: https://blog.51cto.com/14143192/2369740