ChangeLog 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. 2004-06-18 Ben Maurer <[email protected]>
  2. * Comparer.cs: v2 impl. Some workarounds for gmcs are enabled.
  3. 2004-05-26 Sebastien Pouliot <[email protected]>
  4. * Queue.cs: Fixed possible integer overflow in CopyTo methods.
  5. * Stack.cs: Fixed possible integer overflow in CopyTo methods.
  6. 2004-03-13 Martin Baulig <[email protected]>
  7. * Stack.cs, Queue.cs, List.cs: Implement the non-generic interfaces.
  8. 2004-03-11 Martin Baulig <[email protected]>
  9. * List.cs: New file.
  10. 2004-03-11 Martin Baulig <[email protected]>
  11. * Stack.cs, Queue.cs: Just use `Node' for the nested class, not
  12. `Node<T>' (which would create another type parameter `T'
  13. overriding `T' from the outer class).
  14. 2004-02-23 Martin Baulig <[email protected]>
  15. * Stack.cs, Queue.cs: New files. Hmm, looks like I forgot to add
  16. them to CVS; they're already on my hard disk since December or so.
  17. 2003-12-08 Martin Baulig <[email protected]>
  18. * *.cs: require GENERICS.
  19. 2003-11-08 Ben Maurer <[email protected]>
  20. * *.cs: require NET_2_0 and GENERICS
  21. 2003-11-07 Ben Maurer <[email protected]>
  22. * IComparable.cs, IComparer.cs, IDictionary.cs, IKeyComparer.cs, KeyValuePair.cs
  23. Added.
  24. 2003-11-06 Martin Baulig <[email protected]>
  25. * ICollection.cs, IList.cs, IEnumerator.cs, IEnumerable.cs:
  26. Started to implement the System.Collections.Generic classes.