| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 2001-08-10 Dietmar Maurer <[email protected]>
- * common.src: removed duplicate entries
- 2001-08-08 Nick Drochak <[email protected]>
- * ReadOnlyCollectionBase.cs: Initialized private member.
- * CollectionBase.cs: Initialized private member.
- * common.src : Added ReadOnlyCollectionBase.cs and CollectionBase.cs
- * /mcs/class/makefile: Used $(SYSTEMROOT) instead of hard coded //c/winnt
- * /mcs/makefile: Used $(SYSTEMROOT) instead of hard coded //c/winnt
- 2001-08-08 Nick Drochak <[email protected]>
- * CollectionBase.cs: Add
- * ReadOnlyCollectionBase.cs: Add
- * CollectionBaseTest.cs: Add
- * ReadOnlyCollectionBaseTest.cs: Add
- 2001-07-31 Garrett Rooney <[email protected]>
- * StackTest.cs: Add Test case for System.Collections.Stack.
- Contributed by Chris Hynes <[email protected]>
- 2001-07-30 Garrett Rooney <[email protected]>
- * Stack.cs: Clone() doesn't need to check if it's synchronized, since
- we override it in SyncStack anyway...
- * Stack.cs: Pop() now shrinks the array if we drop below 1/4 full, to
- avoid using massive amounts of memory that are not necessary. We only
- drop to half the current size, which I hope will avoid the 'ping-pong'
- effect.
- * Stack.cs: SyncStack.IsReadOnly should return stack.IsReadOnly
- instead of just returning false, since we may have a ReadOnly wrapper
- in the future (although i can't imagine why). Thanks to David
- Menestrina <[email protected]> for pointing this out.
- 2001-07-23 Sergey Chaban <[email protected]>
- * Hashtable.cs: Fixed bug in Clear(), the Count wasn't zeroed.
- From now, Clear() increases modification count.
- Fixed HCP bug in GetHash(object) - hcp.GetHashCode() was used
- instead of hcp.GetHashCode(key). This was resulted in the
- insanely long lookup times when HashCodeProvider was used to
- construct Hashtable. Added thread-safe wrapper.
- 2001-07-16 David Menestrina <[email protected]>
- * BitArray.cs: Add
- * BitArrayTest.cs: Add
- 2001-07-18 Miguel de Icaza <[email protected]>
- * IDictionary.cs (Collections): IDictionary implements ICollection
- as well. Thanks Sergey!
- 2001-07-18 Garrett Rooney <[email protected]>
- * Stack.cs Removed unnecessary locking from many methods of
- SyncStack, removed SyncEnumerator because it was unnecessary,
- added a modCount member to Stack and Stack.Enumerator, to
- ensure that the Stack has not been modified out form under the
- Enumerator, and changed the Enumerator to use a reference to the
- stack rather than copying over the contents array.
- 2001-07-17 David Menestrina <[email protected]>
- * Added implementation of BitArray.
- 2001-07-17 Miguel de Icaza <[email protected]>
- * Hashtable.cs: Removed call to d.Count in the Hashtable
- constructor that takes an IDictionary as IDictionary does not
- provide a Count field.
- 2001-07-15 Sean MacIsaac <[email protected]>
- * IDictionary.cs: Clear was clear.
- 2001-07-13 Miguel de Icaza <[email protected]>
- * All files: Renamespace things to System.
- 2001-07-05 Vladimir Vukicevic <[email protected]>
- * ArrayList.cs: initial checkin and implementation
- * ICollection.cs, IComprarer.cs, IDictionary.cs,
- IDictionaryEnumerator.cs, IEnumerable.cs, IHashCodeProvider.cs,
- IList.cs: initial checkin
|