public static void Main()
var packed = BitConverter.ToUInt32(new[]{b0, b1, b2, b3}, 0);
Console.WriteLine(packed);
var unpacked = BitConverter.GetBytes(packed);
Console.WriteLine($"b0={unpacked[0]},b1={unpacked[1]},b2={unpacked[2]},b3={unpacked[3]}");