14 lines
667 B
C#
14 lines
667 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Represents the method that handles the <see cref="E:System.Data.DataColumnCollection.CollectionChanged" /> event raised when adding elements to or removing elements from a collection.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x020000F5 RID: 245
|
|
// (Invoke) Token: 0x06000601 RID: 1537
|
|
[Token(Token = "0x20000F5")]
|
|
public delegate void CollectionChangeEventHandler(object sender, CollectionChangeEventArgs e);
|
|
}
|