摘要:
C#中如何将字符串转换byte[],同时如何将byte[]换成字符串?博客分类:C#CC++C#1 string to byte[] string str = "abcd"; byte[] bytes = System.Text.Encoding.ASCII.GetBytes(str);-------------------------------------------------------------------------------------------------------------2 byte[] to string byte[] bytes ... 阅读全文