110,010
社区成员




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);