operator==()

Delegate< ReturnType(ArgumentTypes…)>::operator==(const Delegate&) const method

Compares two delegate objects to check if they point to the same entity.

bool System::Delegate<ReturnType(ArgumentTypes...)>::operator==(const Delegate &f) const

Arguments

ParameterTypeDescription
fconst Delegate&A delegate object to compare current delegate object with

Return Value

True if both delegates point the same entity, otherwise - false

See Also