2

im trying to convert a

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

into this:

UInt32 0x0000

How can I do this?

Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331
Dirk
  • 13
  • 2

1 Answers1

0

Try this:

new BitArray(yourArray).CopyTo(intArray, 0);
Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331