Possible duplicate:
How to unregister an "anonymous" event handler
I have a code like this:
Binding bndTitle = this.DataBindings.Add("Text", obj, "Title"); bndTitle.Format += (sender, e) => { e.Value = "asdf" + e.Value; };
How to disable the Format event?
c # events visual-studio-2008 disconnect
Angryhacker
source share