public virtual double GetRandomValue(
Random rng
)
Public Overridable Function GetRandomValue (
rng As Random
) As Double
public:
virtual double GetRandomValue(
Random^ rng
)
abstract GetRandomValue :
rng : Random -> float
override GetRandomValue :
rng : Random -> float
Note that the random number generator rng will be advanced by this method. The next call to its generator methods will not give the same value as it would had it not been passed to this method.
ArgumentNullException | rng is . |