C#中如何将字符串转换byte[],同时如何将byte[]换成字符串

1 string to byte   []­

string str = "abcd"   ; ­

byte[] bytes = System.Text.Encoding.ASCII.GetBytes(str);   ­

-------------------------------------------------------------------------------------------------------------­

2 byte[]   to string ­

byte[] bytes = new byte[255] ;   ­

string str = System.Text.Encoding.ASCII.GetString(bytes,0,bytes.Length);   ­
------------------------------------------------------------------------------------------------------------

3. byte to string­

byte a=4;­

string str=a.toString();­

posted @ 2009-08-25 11:34  Zoya Qiu  阅读(318)  评论(0编辑  收藏  举报