NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICloneable.Clone

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

[Visual Basic]
Function Clone() As Object
[C#]
object Clone();
[C++]
Object* Clone() = 0;
[JScript]
function Clone() : Object;

Return Value

A new object that is a copy of this instance.

Remarks

Clone may be implemented either as a deep copy or a shallow copy. In a deep copy, all objects are duplicated; whereas, in a shallow copy, only the top-level objects are duplicated and the lower levels contain references.

See Also

ICloneable Interface | ICloneable Members | System Namespace