OleDbDataReader.cs 387 B

123456789101112131415161718192021
  1. //
  2. // System.Data.OleDb.OleDbDataReader
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // Copyright (C) Rodrigo Moya, 2002
  8. //
  9. using System.Collections;
  10. using System.ComponentModel;
  11. using System.Data;
  12. using System.Data.Common;
  13. namespace System.Data.OleDb
  14. {
  15. public sealed class OleDbDataReader : MarshalByRefObject,
  16. IDataReader, IDisposable, IDataRecord, IEnumerable
  17. {
  18. }
  19. }