MoreEnumerableRandom(Random, Int32, Int32) Method

Returns an infinite sequence of random integers between a given minimum and a maximum using the supplied random number generator.

Definition

Namespace: MoreLinq
Assembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
C#
public static IEnumerable<int> Random(
	Random rand,
	int minValue,
	int maxValue
)

Parameters

rand  Random
Generator used to produce random numbers
minValue  Int32
Inclusive lower bound of the values returned
maxValue  Int32
Exclusive upper bound of the values returned

Return Value

IEnumerableInt32
An infinite sequence of random integers

Exceptions

ArgumentNullExceptionThrown if rand is .

See Also