operator=()

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

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

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

Moving assignment operator. Takes the ownership of an entity pointed to by the specified delegate.

Delegate & System::Delegate<ReturnType(ArgumentTypes...)>::operator=(Delegate &&o) noexcept

Arguments

ParameterTypeDescription
oDelegate&&The Delegate object to move the pointed to entity from

Return Value

A reference to the self

See Also