DataRowChangeEventHandler.cs 410 B

1234567891011121314151617
  1. //
  2. // System.Data.DataRowChangeEventHandler.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Represents the method that will handle the RowChanging, RowChanged, RowDeleting, and RowDeleted events of a DataTable.
  13. /// </summary>
  14. public delegate void DataRowChangeEventHandler(object sender, DataRowChangeEventArgs e);
  15. }