IdentifierCase.cs 264 B

123456789101112131415161718192021
  1. //
  2. // System.Data.Common.IdentifierCase.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 IdentifierCase
  12. {
  13. Insensitive,
  14. Sensitive,
  15. Unknown
  16. }
  17. }
  18. #endif