* DataSet.cs :
[mono.git] / mcs / class / System.Data / System.Data / DataColumnChangeEventHandler.cs
1 //
2 // System.Data.DataColumnChangeEventHandler.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Represents the method that will handle the the ColumnChanging event.
14         /// </summary>
15         [Serializable]
16         public delegate void DataColumnChangeEventHandler(object sender, DataColumnChangeEventArgs e);
17
18 }