Copies the entire BitArray to a compatible one-dimensional Array, starting at the specified index of the target array.
The specified array must be of a compatible type. Only bool, int, and byte types of arrays are supported.
This method uses Array.Copy(Array, Array, int) to copy the elements.
This method is an O(n) operation, where n is BitArray.Count.