111,097
社区成员




string strInput = @"\xB2\x00\x90\x90\x90\x90";
strInput = strInput.Replace("\\","");
char[] spliter = new char[] {'x'};
string[] strs = strInput.TrimStart(spliter).Split(spliter);
byte[] bytes = new byte[strs.Length];
for (int i = 0; i < strs.Length; i++)
bytes[i] = Convert.ToByte(strs[i], 16);