mscorlib(4.0.0.0) API with additions
ICloneable.cs
2 
3 namespace System
4 {
6  [ComVisible(true)]
7  public interface ICloneable
8  {
11  object Clone();
12  }
13 }
object Clone()
Creates a new object that is a copy of the current instance.
Definition: __Canon.cs:3
Supports cloning, which creates a new instance of a class with the same value as an existing instance...
Definition: ICloneable.cs:7