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/GroupByBehavior.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/GroupByBehavior.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/GroupByBehavior.cs b/mcs/class/System.Data/System.Data.Common/GroupByBehavior.cs
index 829de6bbd3c..a533529c801 100644
--- a/mcs/class/System.Data/System.Data.Common/GroupByBehavior.cs
+++ b/mcs/class/System.Data/System.Data.Common/GroupByBehavior.cs
@@ -35,11 +35,11 @@
namespace System.Data.Common {
public enum GroupByBehavior
{
- ExactMatch = 4,
- MustContainAll = 3,
- NotSupported = 1,
- Unknown = 0,
- Unrelated = 2
+ ExactMatch,
+ MustContainAll,
+ NotSupported,
+ Unknown,
+ Unrelated
}
}