2010年12月30日 星期四

字串與Byte陣列之轉換

字串轉為Byte陣列
byte[] byteArray = System.Text .Encoding.Default.GetBytes ( str );

Byte陣列轉為字串
byte [] dBytes = { 1, 2, 3, 4, 5}
string str;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
str = enc.GetString(dBytes);

沒有留言: