标签: c# type-conversion byte signed
oxfc是否定的,但我将其作为byte并且其值 252 ,有没有办法将其转换为签名byte或{ {1}}?
oxfc
byte
我找到了这个方法:
int
但还有更好的方法吗?
答案 0 :(得分:7)
你可以简单地施展它:
byte b = 0xfc; sbyte s = unchecked((sbyte)b);