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/corlib/System.Collections/IList.cs')
-rw-r--r--mcs/class/corlib/System.Collections/IList.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/mcs/class/corlib/System.Collections/IList.cs b/mcs/class/corlib/System.Collections/IList.cs
deleted file mode 100644
index e039a8358c3..00000000000
--- a/mcs/class/corlib/System.Collections/IList.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
-//
-// System.Collections.IList
-//
-// Author:
-// Vladimir Vukicevic (vladimir@pobox.com)
-//
-// (C) 2001 Vladimir Vukicevic
-//
-
-using System;
-
-namespace System.Collections {
-
- public interface IList : ICollection, IEnumerable {
- // properties
-
- bool IsFixedSize { get; }
-
- bool IsReadOnly { get; }
-
- object this[int index] { get; set; }
-
- // methods
-
- int Add (object value);
-
- void Clear ();
-
- bool Contains (object value);
-
- int IndexOf (object value);
-
- void Insert (int index, object value);
-
- void Remove (object value);
-
- void RemoveAt (int index);
- }
-}