public byte[] GetChunk(int offset, int count)
        {
            var cc = new CodeClock();

            cc.Start();
            var result = _bb.GetChunk(offset, count);

            cc.Stop();
            Report(cc, "GetChunk", count);
            return(result);
        }