上面要求我用C#来调大小端,怎么调啊,希望能有代码,谢谢。
这个跟CPU处理数据有关..操作系统可能没办法调.
看看这个 http://stackoverflow.com/questions/217980/c-sharp-little-endian-or-big-endian
//
public
static
UInt16 ReverseByte(UInt16 value)
{
return
(UInt16)((value & 0xFFU) << 8 | (value & 0xFF00U) >> 8);
}