my byte array has these first 8 values, 0 0 12 12 0 0 127 224
However when I read the bitarray after conversion, it has,
0000,0000 0000,0000 0011,0000 0011,0000 0000,0000 0000,0000 1111,1110 0000,0111
I have no idea why bitarray have these values...
ANybody knows why this is happening?
Code used for the conversion is;
byte[] bytes = System.IO.File.ReadAllBytes(args[0]);
BitArray bits = new BitArray(bytes);