Creates a new object that is a copy of the current instance.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

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

Return Value

A new object that is a copy of this instance.

Implements

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

Remarks

This performs a "deep" copy where the underlying collections are also copied.

See Also