using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Supports cloning, which creates a new instance of a class with the same value as an existing instance. // Token: 0x02000102 RID: 258 [Token(Token = "0x2000102")] [ComVisible(true)] public interface ICloneable { /// Creates a new object that is a copy of the current instance. /// A new object that is a copy of this instance. // Token: 0x0600099A RID: 2458 [Token(Token = "0x600099A")] [Address(Slot = "0")] object Clone(); } }