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:
authorTodd Berman <tberman@mono-cvs.ximian.com>2003-11-19 04:46:48 +0300
committerTodd Berman <tberman@mono-cvs.ximian.com>2003-11-19 04:46:48 +0300
commit54796c8886d09ea2d0b0b557ddff6fc205e94ff6 (patch)
treeb35ff4ba7b77d378fd6096e13e460b6b92d47e3b /mcs/class/System/System.Collections.Specialized
parent3dafbfdc302c7df7cf8b55114c374dfb640e5874 (diff)
2003-11-18 Todd Berman <tberman@gentoo.org>
* IOrderedDictionary.cs: new v2 interface svn path=/trunk/mcs/; revision=20206
Diffstat (limited to 'mcs/class/System/System.Collections.Specialized')
-rwxr-xr-xmcs/class/System/System.Collections.Specialized/ChangeLog4
-rw-r--r--mcs/class/System/System.Collections.Specialized/IOrderedDictionary.cs23
2 files changed, 27 insertions, 0 deletions
diff --git a/mcs/class/System/System.Collections.Specialized/ChangeLog b/mcs/class/System/System.Collections.Specialized/ChangeLog
index 8db4fa8645a..c2f2bcaafc5 100755
--- a/mcs/class/System/System.Collections.Specialized/ChangeLog
+++ b/mcs/class/System/System.Collections.Specialized/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-18 Todd Berman <tberman@gentoo.org>
+
+ * IOrderedDictionary.cs: new v2 interface
+
2003-10-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* NameObjectCollectionBase.cs: added serialization support.
diff --git a/mcs/class/System/System.Collections.Specialized/IOrderedDictionary.cs b/mcs/class/System/System.Collections.Specialized/IOrderedDictionary.cs
new file mode 100644
index 00000000000..afc9f334d77
--- /dev/null
+++ b/mcs/class/System/System.Collections.Specialized/IOrderedDictionary.cs
@@ -0,0 +1,23 @@
+//
+// System.Collections.Specialized/IOrderedDictionary.cs
+//
+// Author: Todd Berman <tberman@gentoo.org>
+//
+// (C) 2003 Todd Berman
+
+#if NET_1_2
+
+namespace System.Collections.Specialized
+{
+ public interface IOrderedDictionary : IDictionary
+ {
+ void Insert (int idx, object key, object value);
+ void RemoveAt (int idx);
+
+ object this[int idx] {
+ get; set;
+ }
+ }
+}
+
+#endif