API documentation may be of great importance to a project. Especially when the project is a library intended for use by other developers. As a rule such documentation is represented in a form of help files (*.hxk for instance) or in a form of HTML pages contating reference for all project's namespaces, classes and etc.
However neither .NET framework nor Visual Studio contain tools for creating API documentation. Instead, developers need to address some separate tools for this aim.
For a long time NDoc tool has been the best choice to generate API docs from source code comments. It is fast, reliable, easy-to-use and free. But unfortunalely NDoc project was freezed and is not supported anymore. It works only with .NET 1.1 projects.
Read More »