Accord.ThreadSafeRandom.ThreadSafeRandom C# (CSharp) Method

ThreadSafeRandom() public method

Initializes a new instance of the ThreadSafeRandom class.
A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used. See Random.Next() for more information.
public ThreadSafeRandom ( int seed ) : System
seed int
return System
        public ThreadSafeRandom(int seed)
            : base(seed)
        {
        }

Same methods

ThreadSafeRandom::ThreadSafeRandom ( ) : System