public void BoundsCheck(int index, int length) { BufferUtil.BoundsCheck(byteArray, index, length); }
public void SetMemory(int index, int length, byte value) { BufferUtil.BoundsCheck(byteArray, index, length); Array.Fill(byteArray, value, index, length); }