Constructor for the Random number generator class with supplied seed.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Random(
	int seed
)
Visual Basic (Declaration)
Public Sub New ( _
	seed As Integer _
)
Visual C++
public:
Random(
	int seed
)

Parameters

seed
Type: System..::.Int32
An int which represents the random number generator seed in the range of -2,147,483,647 to +2,147,483,647.

See Also