private void RefillBufferIfNeeded() { if (BuffPos >= 64) { Buffer = Vmm.ReadUInt64(Position); Position += 8; BuffPos = 0; } }
private void RefillBufferIfNeeded() { if (_buffPos >= 64) { _buffer = _vmm.ReadUInt64(_position); _position += 8; _buffPos = 0; } }