doxypress
doxypress copied to clipboard
Documentation of C# class skipped if on one line only
If the XML doc comment summary tag for a C# class is all on one line, like below, DoxyPress will fail to pick it up.
Example code:
/// <summary>A test class</summary>
public class Test
{
/// <summary>A test method</summary>
public void foo(){}
}
In the example above, foo()
documents fine, but Test
does not. Workaround: pad out the doc comment like so:
/// <summary>
/// A test class
/// </summary>