We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
foo()
Test
/// <summary> /// A test class /// </summary>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
In the example above,
foo()
documents fine, butTest
does not. Workaround: pad out the doc comment like so:The text was updated successfully, but these errors were encountered: