/*uint8 无符号一个字节
Int16 有符号 两个字节
Uint16 无符号两个字节
Int32 有符号4字节
Float4字节,正字节
*/
//无符号数据转换,一个字节
public static int Uint8ToInt1W(byte byt)
{
//UInt16
return Convert.ToInt16(byt);
}
//两个字节有符号数转换,有符号
public static int Int16ToInt2Y(byte[] byt)
{
return BitConverter.ToInt16(byt, 0); //
}
//两个字节的无符号数
public static int Uint16ToInt2W(byte[] byt)
{
Array.Reverse(byt);
return BitConverter.ToUInt16(byt, 0); //
}
//有符号四字节转换
public static int Int32ToInt4Y(byte[] byt)
{
Array.Reverse(byt);
return BitConverter.ToInt32(byt, 0);
}
//单精度数转换,注意reverse
public static float FloatToFloat4Y(byte[] byt)
{
Array.Reverse(byt);
return BitConverter.ToSingle(byt, 0);
}