using System; namespace hwo.bitworks { public class BitBuffer : MultipleBitsSource { bool[] bits; public BitBuffer(int len) { this.bits = new bool[len]; } public override int getBits() { return bits.Length; } public void zero(){ for (int n=0;n