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.SqlTypes/SqlCompareOptions.cs')
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes/SqlCompareOptions.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlTypes/SqlCompareOptions.cs b/mcs/class/System.Data/System.Data.SqlTypes/SqlCompareOptions.cs
deleted file mode 100644
index c07a93e220c..00000000000
--- a/mcs/class/System.Data/System.Data.SqlTypes/SqlCompareOptions.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// System.Data.SqlTypes.SqlCompareOptions.cs
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-// Daniel Morgan (danmorg@sc.rr.com)
-//
-// (C) Ximian, Inc. 2002
-//
-
-namespace System.Data.SqlTypes
-{
- /// <summary>
- /// compare option values for SqlString
- /// </summary>
- [Flags]
- [Serializable]
- public enum SqlCompareOptions {
- BinarySort,
- IgnoreCase,
- IgnoreKanaType,
- IgnoreNonSpace,
- IgnoreWidth,
- None
- }
-
-}
-
-