|  | RandGenMTwistNext(Int32, Int32) Method | 
            Returns a random integer within the specified range.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic int Next(
	int minValue,
	int maxValue
)
Public Function Next ( 
	minValue As Integer,
	maxValue As Integer
) As Integer
public:
int Next(
	int minValue, 
	int maxValue
)
member Next : 
        minValue : int * 
        maxValue : int -> int Parameters
- minValue  Int32
- The lower bound.
- maxValue  Int32
- The upper bound.
Return Value
Int32A random integer greater than or equal to 
minValue, and less than
            or equal to 
maxValue.
 See Also
See Also