ChangeLog 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. 2004-11-25 Carlos Alberto Cortez <[email protected]>
  2. * List.cs: Enumerator changed to behave like the MS impl.
  3. 2004-11-25 Ben Maurer <[email protected]>
  4. * Stack.cs: New, list based impl. Waiting for some gmcs fixes.
  5. 2004-11-10 Martin Baulig <[email protected]>
  6. * IDictionary.cs (IDictionary): `IsReadOnly' and `Clear' are
  7. inherited from ICollection.
  8. 2004-09-20 Gert Driesen <[email protected]>
  9. * ReadOnlyCollection.cs: Moved to System assembly
  10. * Collection.cs: Moved to System assembly
  11. 2004-09-07 Carlos Alberto Cortez <[email protected]>
  12. * ReadOnlyCollection.cs: New file and changes to
  13. Collection.cs tu support it.
  14. 2004-09-05 Marek Safar <[email protected]>
  15. * Dictionary.cs: Added new file (no implementation).
  16. 2004-09-03 Carlos Alberto Cortez <[email protected]>
  17. * Collection.cs: Small improvements related to
  18. style, resizing, and type checking.
  19. 2004-09-01 Carlos Alberto Cortez <[email protected]>
  20. * Collection.cs: New file.
  21. 2004-08-04 Martin Baulig <[email protected]>
  22. * List.cs (List<T>.Enumerator): Made this a struct.
  23. (List<T>.GetEnumerator): The public method now returns the
  24. `Enumerator' struct.
  25. 2004-08-02 Martin Baulig <[email protected]>
  26. Started to do some API review.
  27. * ICollection.cs (ICollection<T>): Added IsReadOnly, Add, Clear,
  28. Contains and Remove.
  29. * IList.cs (IList<T>): Removed Add, Clear, Constains, Remove,
  30. IsReadOnly and IsFixedSize.
  31. 2004-08-02 Martin Baulig <[email protected]>
  32. * IList.cs (IList.Add): Changed return type to void.
  33. * List.cs (List.Add): Likewise.
  34. 2004-07-16 Martin Baulig <[email protected]>
  35. * IComparable.cs: Removed, it's in System.
  36. 2004-07-12 Duncan Mak <[email protected]>
  37. * KeyNotFoundException.cs: Added.
  38. 2004-06-18 Ben Maurer <[email protected]>
  39. * Comparer.cs: v2 impl. Some workarounds for gmcs are enabled.
  40. 2004-05-26 Sebastien Pouliot <[email protected]>
  41. * Queue.cs: Fixed possible integer overflow in CopyTo methods.
  42. * Stack.cs: Fixed possible integer overflow in CopyTo methods.
  43. 2004-03-13 Martin Baulig <[email protected]>
  44. * Stack.cs, Queue.cs, List.cs: Implement the non-generic interfaces.
  45. 2004-03-11 Martin Baulig <[email protected]>
  46. * List.cs: New file.
  47. 2004-03-11 Martin Baulig <[email protected]>
  48. * Stack.cs, Queue.cs: Just use `Node' for the nested class, not
  49. `Node<T>' (which would create another type parameter `T'
  50. overriding `T' from the outer class).
  51. 2004-02-23 Martin Baulig <[email protected]>
  52. * Stack.cs, Queue.cs: New files. Hmm, looks like I forgot to add
  53. them to CVS; they're already on my hard disk since December or so.
  54. 2003-12-08 Martin Baulig <[email protected]>
  55. * *.cs: require GENERICS.
  56. 2003-11-08 Ben Maurer <[email protected]>
  57. * *.cs: require NET_2_0 and GENERICS
  58. 2003-11-07 Ben Maurer <[email protected]>
  59. * IComparable.cs, IComparer.cs, IDictionary.cs, IKeyComparer.cs, KeyValuePair.cs
  60. Added.
  61. 2003-11-06 Martin Baulig <[email protected]>
  62. * ICollection.cs, IList.cs, IEnumerator.cs, IEnumerable.cs:
  63. Started to implement the System.Collections.Generic classes.