标签: c# hex short
如何编写16位(短)十六进制值? 0x0001是16位,但默认为Int32。我完成这项工作的唯一方法是在Int32和Int16之间进行转换。
以下是我必须编写的一些代码:
short newValue = Convert.ToInt16(Convert.ToInt32(someObject.Value) | 0x0001);