14 lines
552 B
C#
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);
|
|
}
|