I was looking to write/get a visual studio addin.
I want to be able to write descriptive log calls at the top and bottom of a function.
like this
log.debug("TheClass.TheMethod(string TheStringParam ="+TheStringParam+") - in");
log.debug("TheClass.TheMethod(string TheStringParam ="+TheStringParam+") - out");
Is there an adin that does this? Is there source anywhere for an add in like Ghost Doc that does reflection(or whatever) to parse the parameters and such?