12 lines
617 B
C#
12 lines
617 B
C#
using System;
|
|
|
|
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: 0x02000322 RID: 802
|
|
// (Invoke) Token: 0x06001C61 RID: 7265
|
|
public delegate void CollectionChangeEventHandler(object sender, CollectionChangeEventArgs e);
|
|
}
|