doxypress icon indicating copy to clipboard operation
doxypress copied to clipboard

Documentation of C# class skipped if on one line only

Open TransientResponse opened this issue 8 years ago • 0 comments

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>

TransientResponse avatar Dec 23 '16 15:12 TransientResponse