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 Cpp2IlInjected;
namespace System.Data
{
/// <summary>Provides data for the <see cref="M:System.Data.DataTable.Clear" /> method.</summary>
// Token: 0x0200003C RID: 60
[Token(Token = "0x200003C")]
public sealed class DataTableClearEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableClearEventArgs" /> class.</summary>
/// <param name="dataTable">The <see cref="T:System.Data.DataTable" /> whose rows are being cleared.</param>
// Token: 0x06000492 RID: 1170 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000492")]
[Address(RVA = "0xA17BB0", Offset = "0xA16BB0", VA = "0x180A17BB0")]
public DataTableClearEventArgs(DataTable dataTable)
{
}
}
}