| 123456789101112131415161718192021 |
- //
- // System.Data.Common.IdentifierCase.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Common {
- public enum IdentifierCase
- {
- Insensitive,
- Sensitive,
- Unknown
- }
- }
- #endif
|