示例#1
0
文件: RngFill.cs 项目: ociaw/RandN
        public void XorShift()
        {
            Span <Byte> buffer = stackalloc Byte[BufferLength];

            for (Int32 i = 0; i < Iterations; i++)
            {
                _xorShift.Fill(buffer);
            }
        }