DataTableNewRowEventHandler.cs 637 B

12345678910111213
  1. //------------------------------------------------------------------------------
  2. // <copyright file="DataTableNewRowEventHandler.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">amirhmy</owner>
  6. // <owner current="true" primary="false">markash</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. using System;
  10. public delegate void DataTableNewRowEventHandler(object sender, DataTableNewRowEventArgs e);
  11. }