mshami85
Results
2
comments of
mshami85
Yes just like MethodIplm , But unfortunately I use .net 4.0 which has no inlining, is it possible to make it?
for example instead of being like this ``` this.__a$_TraceAspect.YYY(); MessageBox.Show("Test"); this.__a$_TraceAspect.XXX(); ``` the code must be like this ``` Console.Write("Starting...."); MessageBox.Show("Test"); Console.Write("Ended"); ```