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
Version Used: 16.10.2, 17.0.0-p1.1
CDATA is advertised by IntelliSense which is nice, but the IDE gives up if it is used:
/// <summary> /// <code><![CDATA[ /// var list = new List<int>(); /// ]]></code> /// </summary> class C { }
Since CDATA isn't working, code blocks must be XML-escaped which is hard to maintain:
/// <summary> /// <code> /// var list = new List<int>(); /// </code> /// </summary> class C { }
If you use new List<int>():
new List<int>()
The text was updated successfully, but these errors were encountered:
@jnm2 This was fixed in #53140 (16.11).
Sorry, something went wrong.
Legend! Thank you!
Duplicate of #53135.
No branches or pull requests
Version Used: 16.10.2, 17.0.0-p1.1
CDATA is advertised by IntelliSense which is nice, but the IDE gives up if it is used:
Since CDATA isn't working, code blocks must be XML-escaped which is hard to maintain:
If you use
new List<int>()
:The text was updated successfully, but these errors were encountered: