public void DoSomething();{}
我希望在每次调用A.DoSomething()时自动调用Listener.OnDoSomethingCalled()。我不能在这里使用装饰模式,因为我不能修改调用A.DoSomething()的代码。我读过一些关于Reflection.Emit或DynamicMethod在运行时动态更改或定义方法的文章。
假设我有一个类和一个名为testMethod(String test1,String test 2)的方法。我还有另一个带有不同方法的类,它将调用它所在的任何方法。我将使用一个名为retryLogic的通用方法来代替上面的操作,如下所示 //Call the test method in the class which