byte[]类型直接输出或者调用ToString函数都会出现这个结果。
需要执行:
byte[] a=new byte[10];
string text = "";for (int i = 0; i < a.Length; i++){ text += a[i].ToString("X2") ;}