RanLux24.Restart Method

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0

Overload List

Restart() Restarts the random number generator using the original seed.
Obsolete
Restart(Int32) Restarts the random number generator using the specified seed.
Obsolete

Restart

Note: This API is now obsolete.
Restarts the random number generator using the original seed.
C#
[ObsoleteAttribute("This method is obsolete and will be removed in future versions.")]
public void Restart()

Restart(Int32)

Note: This API is now obsolete.
Restarts the random number generator using the specified seed.
C#
[ObsoleteAttribute("This method is obsolete and will be removed in future versions.")]
public void Restart(
	int seed
)

Parameters

seed  Int32
The new seed.

See Also