I can subscribe to buttons click events like this:
button.Click += (sender, ev) => { /* do something! */ };
MSDN docs says this:
If you will not have to unsubscribe to an event later, you can use the addition assignment operator (+=) to attach an anonymous method to the event.
How can I determine if I "will not have to unsubscribe to an event later"? If I am in a class X and button is referenced in X and nowhere else, then can i safely use a lamdba without unsubscribing?