MersenneTwisterNext(Int32, Int32) Method

Returns a random number within a specified range.

Definition

Namespace: Metas.UncLib.Core.RandomGenerator
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
C#
public override int Next(
	int minValue,
	int maxValue
)

Parameters

minValue  Int32
The inclusive lower bound of the random number returned.
maxValue  Int32
The exclusive upper bound of the random number returned. maxValue must be greater than or equal to minValue.

Return Value

Int32

See Also