Is there a nice way to split an int into two shorts (.NET)?

前端 未结 13 1671
情深已故
情深已故 2021-01-01 11:25

I think that this is not possible because Int32 has 1 bit sign and have 31 bit of numeric information and Int16 has 1 bit sign and 15 bit of numeric information

相关标签:
13条回答
  • 2021-01-01 12:21

    You might also be interested in StructLayout or unions if you're using c++.

    0 讨论(0)
提交回复
热议问题