im trying to convert a
BitArray {0,0,0,0,0,0,0,0}
into this:
UInt32 0x0000
How can I do this?
Try this:
new BitArray(yourArray).CopyTo(intArray, 0);