Click or drag to resize

RandGenMTwistNext(Int32, Int32) Method

Returns a random integer within the specified range.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public int Next(
	int minValue,
	int maxValue
)

Parameters

minValue  Int32
The lower bound.
maxValue  Int32
The upper bound.

Return Value

Int32
A random integer greater than or equal to minValue, and less than or equal to maxValue.
See Also