byte n = br.ReadByte();
var h = (n & 0xf0) >> 4; // 高位
var l = n & 0x0f; // 低位

 

相关文章: