Esempio n. 1
0
 /// <summary>
 /// Determines if the given values is associated with key.
 /// </summary>
 /// <param name="item">Value to check for.</param>
 /// <returns>True if value is associated with key, false otherwise.</returns>
 public override bool Contains(TValue item)
 {
     return(myDictionary.Contains(key, item));
 }