| 1234567891011121314151617 |
- //
- // System.Data.DataRowChangeEventHandler.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Represents the method that will handle the RowChanging, RowChanged, RowDeleting, and RowDeleted events of a DataTable.
- /// </summary>
- public delegate void DataRowChangeEventHandler(object sender, DataRowChangeEventArgs e);
- }
|