Generate WindowsHelp from C# source code

  • Thread starter Thread starter Zoltan Hernyak
  • Start date Start date
Z

Zoltan Hernyak

Hi,

How can I generate a Windows help file (CHM or HLP) from my
C# source code?

I commented every class and methods and fields,
and generated a DLL, but how can I generate a class
description like the MSDN?

thanks,

zoltan
 
Not what you have asked for but all i can help with:

tools -> build comment web pages

this will produce a web page from the xml comments in your app
 
look up "NDoc" using google or look on sourceforge for it. This is a very
good program to do the job.
 
How can I generate a Windows help file (CHM or HLP) from my
C# source code?


I played around with the option to build comment web pages, but it is quiet
limited and very buggy. It does not properly handle all the XML documentation
tags.

I started using NDoc to create compiled help files from my XML documentation and
I really like it.

http://ndoc.sourceforge.net/
 
look up "NDoc" using google or look on sourceforge for it. This is a very
good program to do the job.
Wowww, that is a great program indeed! Thanks a lot!!!

Zoltan
 
Back
Top