I am making a logger for a C # application which should log the time when each method was called by each method execution time.
I can do this by calling my own EventLogger.LogMethodCall method at the beginning of each method, but I was wondering if the CLR method would fire an event every time a new method is called so that I would not have to manually call my method.
Thanks.
Petkovsky
source share