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

ContainsValue() public méthode

public ContainsValue ( object value ) : bool
value object
Résultat bool
        public override bool ContainsValue(object value) {
            if (hasNullKey && (valueOfNullKey == value)) return true;
            return base.ContainsValue(value);
        }
#endif