Generate a documentation XML file by checking the checkbox option in the build tab of the properties of your project and build it.
If you refer to the assembly, the documentation will be loaded automatically.
Also, the XML contains simple raw data from the xml comments.
For this function to work you'll need to use the XML /// comment style like this:
/// <summary>
/// Class description
/// </summary>
public class Foo
{
/// <summary>
/// Constructor description
/// </summary>
void Foo()
{
}
}
Other than in the XML or .cs files this info is not available.
