标签: c# bit-manipulation bitwise-operators
我想清楚,例如C#中给定字节b中的7 th 位,所以我试试
b
b &= ~(1 << 6);
导致错误Constant value '-65' cannot be converted to byte发生了什么?
Constant value '-65' cannot be converted to byte