任何人都可以解释为什么以下不编译?
byte b = 255 << 1
错误:
常量值'510'无法转换为'字节'
我期待二进制中的以下内容:
1111 1110
类型转换困扰了我.
c# bit-manipulation bit-shift
bit-manipulation ×1
bit-shift ×1
c# ×1