摘要:
1 /// 2 /// 字节数组比较 3 /// 4 /// 字节数组 1 5 /// 字节数组 2 6 /// 如果两个数组相同,返回0;如果数组1大于数组2,返回负值;反之,则返回值大于0。 7 public int MemoryCompareByteArray(byte[] bytearray1, byte[] bytearray2) 8 { 9 int result = 0;10 if (bytearray1.Length != bytearray2.Length)11 {12 result = bytearray1.L... 阅读全文