public void Bytes(byte[] data, int bytes)
 {
     IsTrue(data != null);
     IsTrue(bytes >= 0);
     w.Align();
     w.Bytes(data, bytes);
 }