CatalogLocation.cs 243 B

1234567891011121314151617181920
  1. //
  2. // System.Data.Common.CatalogLocation.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Common {
  11. public enum CatalogLocation
  12. {
  13. End,
  14. Start
  15. }
  16. }
  17. #endif