/// <summary> /// Determines if the collection has the specified key. /// </summary> /// <param name="key">Key</param> /// <returns><c>true</c> if found; otherwise <c>false</c>.</returns> public bool Contains(TKey key) { return(_items.Contains(key)); }