Returns a random number within a specified range.
Namespace:
AForgeAssembly: AForge (in AForge.dll) Version: 2.2.5.0 (2.2.5.0)
Syntax
Parameters
- minValue
- Type: System..::.Int32
The inclusive lower bound of the random number returned.
- maxValue
- Type: System..::.Int32
The exclusive upper bound of the random number returned. maxValue must be greater than or equal to minValue.
Return Value
Returns a 32-bit signed integer greater than or equal to minValue and less than maxValue; that is, the range of return values includes minValue but not maxValue.
Remarks
See Next(Int32, Int32) for more information.