Better way to write this method with this pattern?
- by Slorthe
I have written a lot of methods and I want to time how long it takes for them to run.
public void myMethod(){
startTiming();
doLotsOfStuff();
stopTiming();
}
I am not only timing, I am also doing some other stuff before AND after the doLotsOfStuff() method.
I was wondering if there is a better/smarter way to do this in C# to achieve lesser amount of lines/coding needed for this particular pattern.