ChangeLog 3.1 KB

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