This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Supports cloning, which creates a new instance of a class with the same value as an existing instance.</summary>
// Token: 0x02000109 RID: 265
[Token(Token = "0x2000109")]
[ComVisible(true)]
public interface ICloneable
{
/// <summary>Creates a new object that is a copy of the current instance.</summary>
/// <returns>A new object that is a copy of this instance.</returns>
// Token: 0x060009C4 RID: 2500
[Token(Token = "0x60009C4")]
[Address(Slot = "0")]
object Clone();
}
}