Create BitArray from array of bytes in CSharp
Description
The following code shows how to create BitArray from array of bytes.
Example
using System;/*w ww.j a v a 2 s . co m*/
using System.Collections;
public class SamplesBitArray {
public static void Main() {
BitArray myBA = new BitArray( new byte[]{0,0,0,1} );
myBA[0] = myBA[1] = myBA[2] = myBA[3] = true;
bool[] myBoolArray = new bool[8];
myBoolArray[0] = false;
myBoolArray[1] = false;
myBA.CopyTo( myBoolArray, 3 );
foreach ( Object obj in myBA ) {
Console.WriteLine(obj );
}
}
}