首先,GetInvocationList()不会起作用,因为我希望能够从课外到达他们.我认为它可以用一些反射魔法,这就是我想要弄清楚的.
这就是我现在所拥有的:
fooEventDispatcher.GetType().GetField("FooEvent", BindingFlags.Instance | BindingFlags.NonPublic);
var field = fieldInfo.GetValue(fooEventDispatcher);
Run Code Online (Sandbox Code Playgroud)
我只是不知道该怎么做field.有任何想法吗?