ChangeLog 1.8 KB

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