PHPDocumentor for ASP.NET

  • Thread starter Thread starter nick
  • Start date Start date
N

nick

Hi, does anyone know if there is something like PHPDocumentor for
ASP.NET? That is, is there anything which will parse your files, look
for comments with a particular syntax, and output an API?

Thanks,

Nick
 
Hi, does anyone know if there is something like PHPDocumentor for
ASP.NET? That is, is there anything which will parse your files, look
for comments with a particular syntax, and output an API?

Thanks,

Nick

comes out of the box with C#; VB.NET does not have this capability, only
thru a third-party control.

For C#, I love and use nDoc for my documentation; you can create MSDN like
documentation:

http://ndoc.sourceforge.net/

To get the comments compiled into an XML file, that site may have info on
that, or see

http://www.c-sharpcorner.com/xml/DocumentCSharpUsingXml.asp

you basically set a project property to the XML filename you want created,
then nDoc can create nice-looking manuals with the style you want.

for VB.NET, a couple third-party controls to do this is:

http://www.fesersoft.com/products/vbxmlcomments/default.asp
http://vb-doc.sourceforge.net/
 
Back
Top