unity3d中的字符串转码方法!!!

1
2
3
4
5
6
7
8
9
10
/// <summary>
     /// 转utf8
     /// </summary>
     /// <param name="input"></param>
     /// <returns></returns>
     public  string  UTF8String( string  input)
     {
         UTF8Encoding utf8 =  new  UTF8Encoding();
         return  utf8.GetString(utf8.GetBytes(input));
     }

你可能感兴趣的:(unity3d中的字符串转码方法!!!)