I need to select from an array of bytes an array of least significant bits into BitArray. I have code for searching lsb. But I don't know how add this array to BitArray
private static bool GetBit(byte b)
{
return (b & 1) != 0;
}
So first I would convert it to a bool array and then create the BitArray from this bool array :
Edit:
Here is the solution with an array of arrays :