Is it possible to unsubscribe an anonymous method from an event?
If I subscribe to an event like this:
void MyMethod() { Console.WriteLine(\"I di
if you want refer to some object with this delegate, may be you can use Delegate.CreateDelegate(Type, Object target, MethodInfo methodInfo) .net consider the delegate equals by target and methodInfo