System.Collections.Hashtable.SyncHashtable.ContainsValue C# (CSharp) 메소드

ContainsValue() 공개 메소드

public ContainsValue ( Object key ) : bool
key Object
리턴 bool
            public override bool ContainsValue(Object key)
            {
                lock (_table.SyncRoot)
                {
                    return _table.ContainsValue(key);
                }
            }