MersenneTwisterNext(Int32, Int32) Method
Returns a random number within a specified range.
Namespace: Metas.UncLib.Core.RandomGeneratorAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
public override int Next(
int minValue,
int maxValue
)
Public Overrides Function Next (
minValue As Integer,
maxValue As Integer
) As Integer
public:
virtual int Next(
int minValue,
int maxValue
) override
abstract Next :
minValue : int *
maxValue : int -> int
override Next :
minValue : int *
maxValue : int -> int
- 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.
Int32