C# modbus RTU 中使用到的 ushort[] 轉 int 與 int 轉 ushort[]

搬砖的L先生發表於2024-08-04

public static int ushorts2int(ushort[] res)
{
int high = res[0];
int low = res[1];
int value = (high << 16) + low;
return value;
}

    public static ushort[] int2ushorts(int res)
    {
        ushort ust1 = (ushort)(res >> 16);
        ushort ust2 = (ushort)res;
        return new ushort[] { ust1, ust2 };
    }

相關文章