Take the following C# class:
c1 { event EventHandler someEvent; }
If there are a lot of subscriptions to c1\'s someEven
c1
someEven
Add a method to c1 that will set 'someEvent' to null.
public class c1 { event EventHandler someEvent; public ResetSubscriptions() => someEvent = null; }