Is there such C# tool ?

O

Oleg Subachev

I have .cs source file with a bunch of public and internal members
(classes, methods, enums ...) in it.
I want to extract declarations of public members into separate file
so that I can distribute this file among users as documentation.

Is there such tool to extract public members form .cs source file ?

Oleg Subachev
 
S

scott blood

Oleg,

have you tried the build comment web pages menu command on the tools menu?

I find this tool particular useful for creating my documentation, it does
however depend on you entering useful or descriptive comments in your code.

Regards
Scott Blood
C# Developer
 
S

Simon Dahlbacka

take a look at ndoc (ndoc.sf.net), unfortunately it does not support
..NET 2.0 at the moment but there is an upcoming version that does, ETA
for that version however is unknown..
 
K

Kevin Spencer

If that is all you need, check out the Ildasm.exe command-line tool that
comes with the .Net framework.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.
 
S

Stoitcho Goutsev \(100\)

Oleg,

That what the doc comments are for. Document you source code using doc
comments and then use one of tools for generating help files. There is one
free, very good, but at the moment I don't remember its name; I can look
around for it if you need it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top