ContainsValue()

BaseDictionary::ContainsValue(const mapped_t&) method

Checks if value is present in dictionary. Uses operator == to compare values.

bool System::Collections::Generic::BaseDictionary<Map>::ContainsValue(const mapped_t &value)

Arguments

ParameterTypeDescription
valueconst mapped_t&Value to look for.

Return Value

true if value is found, false otherwise.

See Also