MersenneTwisterNextUInt(UInt32, UInt32) Method
            Returns a random number within a specified range.
            
Namespace: Metas.UncLib.Core.RandomGeneratorAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
public virtual uint NextUInt(
	uint minValue,
	uint maxValue
)
Public Overridable Function NextUInt ( 
	minValue As UInteger,
	maxValue As UInteger
) As UInteger
public:
virtual unsigned int NextUInt(
	unsigned int minValue, 
	unsigned int maxValue
)
abstract NextUInt : 
        minValue : uint32 * 
        maxValue : uint32 -> uint32 
override NextUInt : 
        minValue : uint32 * 
        maxValue : uint32 -> uint32 
- minValue  UInt32
 - The inclusive lower bound of the random number returned.
 - maxValue  UInt32
 - The exclusive upper bound of the random number returned.
            maxValue must be greater than or equal to minValue.
 
UInt32