How can I use PerfMon counters to record the average execution time of a method in C#?
So far I\'ve only found sample code to incrememnt or decrement a PerfMon count
Take a look at the different PerformanceCounterTypes. There are several types for calculating average time or count. You will also find some examples.
Hope this helps.