I am trying to read a byte and convert into a bit. I am trying to create a flagging system.
So byte 3 would be raise the first two flags as true. However When I try and convert it just passes the value of the byte as the length of the BitArray. Any help greatly appreciated.
BinaryReader br = new BinaryReader(filestream);
Byte flag = br.ReadByte();
BitArray flags = new BitArray(flag);
record.Isbool = flags[0];
record.Isbool1 = flags[1];
etc