Creates a deep copy of this random number generator.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public override Object Clone()
Visual Basic (Declaration)
Public Overrides Function Clone As Object
Visual C++
public:
virtual Object^ Clone() override

Return Value

Returns a deep copy of this random number generator.

Implements

ICloneable..::.Clone()()()

Remarks

Uses the Clone() method on the UniformDeviateMethod delegate which is a shallow copy. A deep copy requires copying the underlying target and resetting the delegate.

See Also