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/IContainer.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/IContainer.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/class/System/System.ComponentModel/IContainer.cs b/mcs/class/System/System.ComponentModel/IContainer.cs
deleted file mode 100644
index fb5d34f1ab6..00000000000
--- a/mcs/class/System/System.ComponentModel/IContainer.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// System.ComponentModel.IContainer.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.ComponentModel {
-
- public interface IContainer {
-
- ComponentCollection Components {
- get;
- }
-
- void Add (IComponent component);
-
- void Add (IComponent component, string name);
-
- void Remove (IComponent component);
- }
-}