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/System.ComponentModel/ListSortDirection.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/ListSortDirection.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/class/System/System.ComponentModel/ListSortDirection.cs b/mcs/class/System/System.ComponentModel/ListSortDirection.cs
deleted file mode 100644
index b58a39a4170..00000000000
--- a/mcs/class/System/System.ComponentModel/ListSortDirection.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// System.ComponentModel.ListSortDirection.cs
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-//
-// (C) Rodrigo Moya, 2002
-//
-
-namespace System.ComponentModel
-{
- /// <summary>
- /// Specifies the direction of a sort operation.
- /// </summary>
- [Serializable]
- public enum ListSortDirection {
- Ascending = 0,
- Descending = 1
- }
-}