Example #1
0
            public bool ContainsKey(TK key)
            {
                if (_lowerTest.Invoke(key) && _upperTest.Invoke(key))
                {
                    return(_subDictionary.ContainsKey(key));
                }

                return(false);
            }
Example #2
0
 public bool Contains(TK item)
 {
     return(_parent.ContainsKey(item));
 }