Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/25/15 14:47:09 (9 years ago)
Author:
abeham
Message:

#2470: Added remaining constructors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs

    r12012 r12907  
    5959    public ItemDictionary() : base() { }
    6060    public ItemDictionary(int capacity) : base(capacity) { }
     61    public ItemDictionary(IEqualityComparer<TKey> comparer) : base(comparer) { }
    6162    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) { }
    6265
    6366    public object Clone() {
Note: See TracChangeset for help on using the changeset viewer.