Visual Studio Add in to Add Tracing
Posted
by Eric Brown - Cal
on Stack Overflow
See other posts from Stack Overflow
or by Eric Brown - Cal
Published on 2009-09-03T14:24:45Z
Indexed on
2010/04/28
12:13 UTC
Read the original article
Hit count: 533
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?
© Stack Overflow or respective owner