OleDbParameterCollection.cs 383 B

1234567891011121314151617181920
  1. //
  2. // System.Data.OleDb.OleDbParameterCollection
  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 OleDbParameterCollection : MarshalByRefObject,
  15. IDataParameterCollection, IList, ICollection, IEnumerable
  16. {
  17. }
  18. }