MethodLogger 修改dll 記錄方法的開始和結束(Hook into a method)

如果你想記錄一個方法的開始和結束,那麼該怎麼做呢? 最簡單的方法: public class MyClass {     public void MyMethod()     {         Log.EnterMethod();         Console.WriteLine("MyMethod");         Log.ExitMethod();     } }   可是,如果已經有
相關文章
相關標籤/搜索