System.Collections.HashMap.ContainsKey C# (CSharp) 메소드

ContainsKey() 공개 메소드

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