MoreEnumerableRandomDouble(Random) Method

Returns an infinite sequence of random double values between 0.0 and 1.0 using the supplied random number generator.

Definition

Namespace: MoreLinq
Assembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
C#
public static IEnumerable<double> RandomDouble(
	Random rand
)

Parameters

rand  Random
Generator used to produce random numbers

Return Value

IEnumerableDouble
An infinite sequence of random doubles

Exceptions

ArgumentNullExceptionThrown if rand is .

See Also