3
One question on the same subject has a reply what it says:
You don’t have to desubscribe from an Event when the instance that is subscribing has the same Scope as the instance that is being subscribed to.
Free translation:
It’s not necessary "unsubscribe" of an event when the subscribed object and the subscribing object have the same life span.
Ex: Object A(subscriber) creates object B(subscribed), A subscribes to an event B.
I have no doubt about this. It is the most frequent situation when using events.
My difficulty is in identifying a situation other than this.
What I ask is an example/explanation of when the "unsubscribe" of events is required.