Files
27Aug2021-Cpp2IL-Dump/System.Data/DataTableNewRowEventHandler.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

14 lines
552 B
C#

using System;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Represents the method that handles the <see cref="M:System.Data.DataTable.NewRow" /> method.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data.</param>
// Token: 0x02000040 RID: 64
// (Invoke) Token: 0x060004BB RID: 1211
[Token(Token = "0x2000040")]
public delegate void DataTableNewRowEventHandler(object sender, DataTableNewRowEventArgs e);
}