How to show '<' char in C# XML comments?
I searched a lot, but couldn't find how to show '<' ch开发者_高级运维ar in C# XML comments?
Did you try the normal XML escaping of <
- that should work, I believe:
/// <summary>
/// Less than is <
/// Greater than is >
/// Ampersand is &
/// </summary>
Basically it's normal XML.
You need to escape it as in normal XML: with <
Same goes for >
for >
You can use HTML escape codes, as mentioned in other answers, but you could also look at using the CDATA - (Unparsed) Character Data tag, here is a link with more info
Cheers
Would <
work?
http://msdn.microsoft.com/en-us/library/5ast78ax.aspx
As @Eris mentioned we could also use
<summary cref="C{T}">
instead of
<summary cref="C < T >">
for sake of delimiting a generic type
See a nice example on MSDN
精彩评论