Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation of C# class skipped if on one line only #12

Open
TransientResponse opened this issue Dec 23, 2016 · 0 comments
Open

Documentation of C# class skipped if on one line only #12

TransientResponse opened this issue Dec 23, 2016 · 0 comments

Comments

@TransientResponse
Copy link

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant