Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/IdentifierCase.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/IdentifierCase.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/IdentifierCase.cs b/mcs/class/System.Data/System.Data.Common/IdentifierCase.cs
index 53dc2e4bb44..126504a5e8c 100644
--- a/mcs/class/System.Data/System.Data.Common/IdentifierCase.cs
+++ b/mcs/class/System.Data/System.Data.Common/IdentifierCase.cs
@@ -35,9 +35,9 @@
namespace System.Data.Common {
public enum IdentifierCase
{
- Insensitive = 1,
- Sensitive = 2,
- Unknown = 0
+ Insensitive,
+ Sensitive,
+ Unknown
}
}