Dwarrowdelf.MWCRandom.NextUint C# (CSharp) Method

NextUint() public method

Get random UInt32 [0, UInt32.MaxValue]
public NextUint ( ) : uint
return uint
        public uint NextUint()
        {
            m_z = 36969 * (m_z & 65535) + (m_z >> 16);
            m_w = 18000 * (m_w & 65535) + (m_w >> 16);
            return (m_z << 16) + m_w;
        }