标签:style blog os ar 数据 div sp log on
char[]与string互相转换
string 转换成 Char[]
string ss = "abcdefg";
char[] cc = ss.ToCharArray();
Char[] 转换成string
string s = new string(cc);
此外,byte[] 与 string 之间的装换
byte[] bb = Encoding.UTF8.GetBytes(ss);
string s = Encoding.UTF8.GetString(bb);
标签:style blog os ar 数据 div sp log on
原文地址:http://www.cnblogs.com/XzcBlog/p/3951924.html