Converting a BitArray in to UInt32 C# [duplicate]

岁酱吖の 提交于 2020-01-15 03:21:46

问题


im trying to convert a

BitArray {0,0,0,0,0,0,0,0}

into this:

UInt32 0x0000

How can I do this?


回答1:


Try this:

new BitArray(yourArray).CopyTo(intArray, 0);


来源:https://stackoverflow.com/questions/37157550/converting-a-bitarray-in-to-uint32-c-sharp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!