operator!=()

MulticastDelegate< ReturnType(ArgumentTypes…)>::operator!=(const std::nullptr_t&) const method

Determines whether the delegate collection is not empty.

bool System::MulticastDelegate<ReturnType(ArgumentTypes...)>::operator!=(const std::nullptr_t &) const

Return Value

True if the delegate collection is not empty, otherwise - false

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

Determines whether two instances of MulticastDelegate - the current object and the specified object - are inequal.

bool System::MulticastDelegate<ReturnType(ArgumentTypes...)>::operator!=(const MulticastDelegate &other) const

Arguments

ParameterTypeDescription
otherconst MulticastDelegate&The MulticastDelegate object to compare with

Return Value

True if both objects represent the same delegates collection, otherwise - false

See Also