I really need to know when to remove event handlers. Does c# remove the event handlers automatically when I'm creating a user control and add them in the template parts of the control?
What about event handlers I add in the Loaded event of a WPF window? Should I remove them in them Closing event of than window? Or C# will do that for me?
What about other scenarios? How much do I care for removing event handlers at all?