public static readonly byte[] TestArray=
new byte[] { 0x75, 0xa5, 0x15, 0x19, 0xa0, 0x2e, 0xd9, 0x37, 0xb0, 0x4d };
public bool TestFunction()
{
MemoryStream s=new MemoryStream(
new byte[] { 0x75, 0xa5, 0x15, 0x19, 0xa0, 0x2e, 0xd9, 0x37, 0xb0, 0x4d }
);
byte[] test=s.ToArray();
return (test==TestArray);
}
我正在使用上面的简单代码。数组中的字节值相等。但我的TestFunction()
总是返回假。到底是怎么回事?