| 12345678910111213141516171819 |
- //
- // System.Data.OleDb.OleDbRowUpdatedEventHandler
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- //
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- [Serializable]
- public delegate void OleDbRowUpdatedEventHandler (
- object sender,
- OleDbRowUpdatedEventArgs e);
- }
|