This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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: 0x02000102 RID: 258
[Token(Token = "0x2000102")]
[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: 0x0600099A RID: 2458
[Token(Token = "0x600099A")]
[Address(Slot = "0")]
object Clone();
}
}