I am using Resharper 5.1 code analysis many a times i get a comment from resharper as
"Event unsubscription via anonymous delegate"
#Part of Code
if (((bool)e.NewValue))
{
listView.PreviewTextInput += (o,args) =>
listView_PreviewTextInput(o,args,listView);
}
else
{
listView.PreviewTextInput -= (o, args) =>
listView_PreviewTextInput(o, args, listView);
}
How could i correct or optimze this thing
You can extract the lamdba to a variable: