Click or drag to resize

MoreEnumerableRandom Method (Random, Int32, Int32)

Returns an infinite sequence of random integers between minValue and maxValue using the supplied random number generator.

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 2.4.0
Syntax
public static IEnumerable<int> Random(
	Random rand,
	int minValue,
	int maxValue
)

Parameters

rand
Type: SystemRandom
Generator used to produce random numbers
minValue
Type: SystemInt32
Inclusive lower bound of the values returned
maxValue
Type: SystemInt32
Exclusive upper bound of the values returned

Return Value

Type: IEnumerableInt32
An infinite sequence of random integers
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if rand is .
See Also