本文共 471 字,大约阅读时间需要 1 分钟。
byte[] bytetest = {0x01,0x03};
class AnsData { public byte[] req_buf; public byte[] ans_buf; public AnsData(byte[] str_in, byte[] str2){ req_buf = str_in; ans_buf = str2; } }; AnsData[] AnsDataLib = { new AnsData(new byte[]{0x01, 0x03}, new byte[]{0x43,0x00}), new AnsData(new byte[]{0x01,0x07}, new byte[]{0x47,0x00}), };
转载地址:http://ifgpz.baihongyu.com/