The tools you will need
GhostDoc
Sandcastle
Sandcastle GUI
MSHC Migrate Utility
Visual Studio SDK (VS2010)
Visual Studio SDK (VS2008)
And, of course, you will need either or both of Visual Studio 2008/2010.
Sample API
public class API
{
public API()
{
}public string Foo( string s )
{
return "Foo got " + s;
}}
GhostDoc
The GhostDoc project is a free VS plug-in that greatly simplifies generating the XMLDoc Comments in your API source code. As you define and implement your classes it is pretty trivial to create these comments within VS by simply typing three '/'s, giving you
Read more: Codeproject