|  | RandGenMTwistNext(Int32) Method | 
            Returns a positive random integer less than the specified maximum.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic int Next(
	int maxValue
)
Public Function Next ( 
	maxValue As Integer
) As Integer
public:
int Next(
	int maxValue
)
member Next : 
        maxValue : int -> int Parameters
- maxValue  Int32
- The maximum value. Must be greater than zero.
Return Value
Int32A positive random integer less than or equal to 
maxValue.
 See Also
See Also