110,960
社区成员
发帖
与我相关
我的任务
分享
string s = @"\002\003\0076";
string[] toks = s.Split(new char[] { '\\' }, StringSplitOptions.RemoveEmptyEntries);
byte[] b = new byte[toks.Length];
for (int i = 0; i < b.Length; i++) b[i] = Convert.ToByte(toks[i], 8);