Example #1
0
 public EnumerableValuesCollection(MultiDictionaryBase <TKey, TValue> myDictionary)
 {
     this.myDictionary = myDictionary;
 }
Example #2
0
 public KeyValuePairsCollection(MultiDictionaryBase <TKey, TValue> myDictionary)
 {
     this.myDictionary = myDictionary;
 }
Example #3
0
 /// <summary>
 /// Constructor. Initializes this collection.
 /// </summary>
 /// <param name="myDictionary">Dictionary we're using.</param>
 /// <param name="key">The key we're looking at.</param>
 public ValuesForKeyCollection(MultiDictionaryBase <TKey, TValue> myDictionary, TKey key)
 {
     this.myDictionary = myDictionary;
     this.key          = key;
 }