Creates a deep copy of this function.

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

Syntax

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

Return Value

A deep copy of this function.

Implements

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

Remarks

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

See Also