* OrderedDictionary.cs: IsReadOnly, indexers, Keys and Values should
[mono-project.git] / mcs / class / System / System.Collections.Generic / ChangeLog
blob2267c9df7924c13e46e3a5fcb7e7c5d56b5fe964
1 2006-09-30  Gert Driesen  <drieseng@users.sourceforge.net>
3         * SortedList.cs: Count property, indexer and Clear method should not 
4         be virtual. Removed unnecessary explicit interface implementation of
5          Add (TKey, TValue) and Remove (TKey, TValue).
6         * Queue.cs: Marked Enumerator as Serializable.
7         * Stack.cs: Marked Stack <T> and Enumerator as serializable.
9 2006-09-28  Andrew Skiba  <andrews@mainsoft.com>
11         * Stack.cs: TARGET_JVM
13 2006-04-05  Atsushi Enomoto  <atsushi@ximian.com>
15         * SortedDictionary.cs : new file. The original code is mostly
16           from Kazuki Oikawa.
18 2006-03-11  Miguel de Icaza  <miguel@novell.com>
20         * Queue.cs: Flag as serializable.
22         * LinkedList.cs (OnDeserialization): Fix signature. 
24         * SortedList.cs: Implement explicitly a few methods that were
25         flagged by corcompare. 
27 2005-11-10  Zoltan Varga  <vargaz@gmail.com>
29         * SortedList.cs Queue.cs Stack.cs: Implement TrimExcess methods.
30         
31         * SortedList.cs: Fix build.
33         * Stack.cs SortedList.cs LinkedList.cs: Update to net 2.0 RTM.
35 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
37         * SortedList.cs: New file.
39 2005-09-04  David Waite  <mass@akuma.org>
41         * LinkedList.cs, LinkedListNode.cs: added implementation of LinkedList<T>
43 2005-08-08  Kamil Skalski  <nazgul@nemerle.org>
45         * Queue.cs, Stack.cs: remove implementation of ICollection<T>,
46         since it is no longer in b2 API
48 2005-06-20  David Waite  <mass@akuma.org>
50         * Collection.cs, ReadOnlyCollection.cs: removed as they are no longer in the b2 API
52 2005-05-13  Atsushi Enomoto  <atsushi@ximian.com>
54         * Queue.cs, Stack.cs: moved from mscorlib.dll
56 2005-02-35  Carlos Alberto Cortez <calberto.cortez@gmail.com>
58         * Collections.cs: Changed the code inside IndexOf, for
59         the use of Array.IndexOf<>, to keep clean the code.
60         
61 2004-11-17  Carlos Alberto Cortez Guevara <carlos@unixmexico.org>
63         * Collections.cs: Avoid the call to Array.Clear () in RemoveItem (),
64         now we only assign the last element (the deleted one) to its default
65         value.
66         
67 2004-09-20  Gert Driesen <drieseng@users.sourceforge.net>
69         * ReadOnlyCollection.cs: Moved over from corlib
70         * Collection.cs: Moved over from corlib