Click or drag to resize
MoreEnumerableRandom Method (Int32, Int32)
Returns an infinite sequence of random integers between minValue and maxValue.

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

Parameters

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
See Also