c# 字节高低位
2021-04-11 20:25
阅读:625
标签:read adb amp var c# byte pre class nbsp c# 字节高低位 标签:read adb amp var c# byte pre class nbsp 原文地址:https://www.cnblogs.com/micenote/p/9023331.html
byte n = br.ReadByte();
var h = (n & 0xf0) >> 4; // 高位
var l = n & 0x0f; // 低位
评论
亲,登录后才可以留言!