A question on the same theme has a answer it says:
You do not have to unsubscribe from an event when the instance that is subscribing has the same scope as the instance that is being subscribed to.
Free translation:
You do not need to "unsubscribe" from an event when the subscribed object and the subscriber object have the same lifetime.
Ex: Object A (subscriber) creates object B (subscript), A subscribes an event of B.
As for this I have no doubt. This is the most frequent situation when using events.
My problem is to identify a situation other than that.
What I ask is an example / explanation of when "unsubscribe" from events is required.