- Timestamp:
- 08/25/15 14:47:09 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs
r12012 r12907 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(int capacity, IEqualityComparer<TKey> comparer) : base(capacity, comparer) { } 64 public ItemDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) : base(dictionary, comparer) { } 62 65 63 66 public object Clone() {
Note: See TracChangeset
for help on using the changeset viewer.