| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 2010-06-09 Jonathan Pryor <[email protected]>
- * KeyedCollection.cs: Make KeyedCollection.InsertItem() exception
- safe, so that if the index is invalid (negative or too large) we
- don't add the entry to the underlying Dictionary.
- 2008-06-27 Andreas Nahr <[email protected]>
- * Collection.cs: Fix parameter names
- * ReadOnlyCollection.cs: Fix parameter names
- 2008-04-02 Andreas Nahr <[email protected]>
- * ReadOnlyCollection.cs: Fix parameter names
- 2008-01-20 Juraj Skripsky <[email protected]>
- * ReadOnlyCollection.cs: Fix the getters for ICollection.IsSynchronized,
- ICollection.SyncRoot and IList.IsFixedSize to match MS.NET.
- 2008-01-13 Juraj Skripsky <[email protected]>
- * Collection.cs, ReadonlyCollection.cs (ICollection.CopyTo):
- Use ICollection.CopyTo of inner list. Fixes bug #350432.
- 2006-08-08 Atsushi Enomoto <[email protected]>
- * ReadOnlyCollection.cs : added get_IList<T>.this(int).
- 2006-03-28 Atsushi Enomoto <[email protected]>
- * Collection.cs : Count and Item are not virtual.
- 2006-01-24 Raja R Harinath <[email protected]>
- * ReadOnlyCollection.cs (Items): Return underlying list.
- 2005-12-19 Sebastien Pouliot <[email protected]>
- * Collection.cs: IsReadOnly property isn't public in 2.0 final.
- * ReadOnlyCollection.cs: Fixed API to match 2.0 final.
- 2005-10-27 Atsushi Enomoto <[email protected]>
- * Collection.cs : added Items.
- 2005-10-25 Carlo Kok <[email protected]>
- * Collection.cs :
- Added virtual ClearItems, InsertItem, RemoveItem, SetITem.
- * KeyedCollection.cs : Implemented.
- 2005-06-19 David Waite <[email protected]>
- * Collection.cs ReadonlyCollection.cs: Implement all methods
- 2005-06-19 Zoltan Varga <[email protected]>
- * Collection.cs KeyedCollection.cs ReadOnlyCollection.cs: New files.
|