System.Collections.Hashtable.SyncHashtable.ContainsValue C# (CSharp) Méthode

ContainsValue() public méthode

public ContainsValue ( Object key ) : bool
key Object
Résultat bool
            public override bool ContainsValue(Object key)
            {
                lock (_table.SyncRoot)
                {
                    return _table.ContainsValue(key);
                }
            }