1 string to byte
string str = "your string" ;
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(str);
2 bytes to string
byte[] bytes = new byte[255] ;
......
string str = System.Text.Encoding.ASCII.GetString(bytes,0,bytes.Length);
还可以用其他编码 UTF7,UTF8,Unicode 等