System.Collections.HashMap.ContainsKey C# (CSharp) Method

ContainsKey() public method

public ContainsKey ( object key ) : bool
key object
return bool
        public override bool ContainsKey(object key) {
            if (key == null) return hasNullKey;
            return base.ContainsKey(key);
        }
        public override bool ContainsValue(object value) {