What i'd like to generate into method bodies:
private void SomeMethod()
{
Logger.Log("Entering SomeMethod.");
// do stuff here
Logger.Log("Exiting SomeMethod.")
}
Is there a tool which can generate that for me? If there isn't, and I'd like to implement one myself, then where do I start, which library should I look into for recognizing methods in c# source code? Simple regexes should be enough?