public void XorShift() { Span <Byte> buffer = stackalloc Byte[BufferLength]; for (Int32 i = 0; i < Iterations; i++) { _xorShift.Fill(buffer); } }