如何把string转为byte?
string str = "abcd";char [] ch = str.ToCharArray();foreach(char temp in ch){Console.WriteLine(temp);}字符串转byte数组,前提是能转换成功