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/CollectionChangeAction.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/CollectionChangeAction.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/class/System/System.ComponentModel/CollectionChangeAction.cs b/mcs/class/System/System.ComponentModel/CollectionChangeAction.cs
deleted file mode 100644
index 640e36e11ae..00000000000
--- a/mcs/class/System/System.ComponentModel/CollectionChangeAction.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// System.ComponentModel.CollectionChangeAction.cs
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-//
-// (C) Ximian, Inc
-//
-
-namespace System.ComponentModel
-{
- /// <summary>
- /// Specifies how the collection is changed.
- /// </summary>
- public enum CollectionChangeAction {
- Add = 1,
- Remove = 2,
- Refresh = 3
- }
-}