OleDbErrorCollection.cs 320 B

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