- Timestamp:
- 01/28/13 17:54:46 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs
r7725 r9194 59 59 public ItemDictionary() : base() { } 60 60 public ItemDictionary(int capacity) : base(capacity) { } 61 public ItemDictionary(IEqualityComparer<TKey> comparer) : base(comparer) { } 61 62 public ItemDictionary(IDictionary<TKey, TValue> dictionary) : base(dictionary) { } 63 public ItemDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) : base(dictionary, comparer) { } 62 64 63 65 public object Clone() {
Note: See TracChangeset
for help on using the changeset viewer.