Automatic comments generator
-
Hi, i faced such a problem. I have a web site (ASP.NET C# built with code-behind approach) with a number (more than 300) web-controls. Now i have to document all of this mass. Is there any tool that will do following (just for example) In the very beginning of the file puts: ///... before every single class: // This is class CLASSNAME and it does blah-blah.... Before each mehtod /// This is method MethodName thad does blahblah //it has params ParamName Thanks for advice.
-
Hi, i faced such a problem. I have a web site (ASP.NET C# built with code-behind approach) with a number (more than 300) web-controls. Now i have to document all of this mass. Is there any tool that will do following (just for example) In the very beginning of the file puts: ///... before every single class: // This is class CLASSNAME and it does blah-blah.... Before each mehtod /// This is method MethodName thad does blahblah //it has params ParamName Thanks for advice.
Check out GhostDoc http://www.roland-weigelt.de/ghostdoc/[^] .GhostDoc is a free add-in for Visual Studio that automatically generates XML documentation comments. Either by using existing documentation inherited from base classes or implemented interfaces, or by deducing comments from name and type of e.g. methods, properties or parameters. DevIntelligence.com - My blog for .Net Developers