Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试转换
BitArray {0,0,0,0,0,0,0,0}
进入这个:
UInt32 0x0000
我怎样才能做到这一点?
尝试这个:
new BitArray(yourArray).CopyTo(intArray, 0);