I heard that if lambda expressions are used to subscribe to an event, this creates a weak link to the code of the event handler, so you do not need to explicitly unsubscribe from the event when the subscriber dies / is no longer interesting. It's true? For example.
aPersion.PropertyChanged += (s, e) =>
{
if (e.PropertyName == "Name")
{
this.Name = this.TheController.Name;
}
};
source
share