OleDbRowUpdatedEventArgs.cs 297 B

123456789101112131415161718
  1. //
  2. // System.Data.OleDb.OleDbRowUpdatedEventArgs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // Copyright (C) Rodrigo Moya, 2002
  8. //
  9. using System.Data;
  10. using System.Data.Common;
  11. namespace System.Data.OleDb
  12. {
  13. public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs
  14. {
  15. }
  16. }