ContainsKey()

BaseDictionary::ContainsKey(const key_t&) const method

Checks if key is present in dictionary.

bool System::Collections::Generic::BaseDictionary<Map>::ContainsKey(const key_t &key) const override

Arguments

ParameterTypeDescription
keyconst key_t&Key to look for.

Return Value

true if key is present, false otherwise.

See Also