RandomHelper Next Method (Int32)Bespoke Osc Library
Returns a nonnegative random number less than the specified maximum.

Namespace: Bespoke.Common
Assembly: Bespoke.Common (in Bespoke.Common.dll) Version: 5.0.0.0 (5.0.0.0)
Syntax

Public Shared Function Next ( _
	maxValue As Integer _
) As Integer

Parameters

maxValue
Type: OnlineSystem Int32
The exclusive upper bound of the random number to be generated. maxValue must be greater than or equal to zero.

Return Value

A 32-bit signed integer greater than or equal to zero, and less than maxValue; that is, the range of return values ordinarily includes zero but not maxValue. However, if maxValue equals zero, maxValue is returned.
Exceptions

See Also