vote up 3 vote down star

Does anyone know how to insert a line break into a summary comment in order for the line break to be reflected in Intellisense documentation?

To clarify, assume code documentation..

/// <summary>
/// Some text documentation
///  - a line break - 
/// Some more documentation
/// </summary>
public void SomeMethod() { }

So when using this method Intellisense offers a summary for the method formatted like this:

Some text documentation

Some more documentation

(Note - the 'para' tag doesn't create empty line breaks - I've tried it!)

flag

51% accept rate

5 Answers

vote up 1 vote down

Try using this.

/// <summary>
/// <para>Paragraph 1.</para>
/// <para>Paragraph 2.</para>
/// </summary>

But I don't think you can have an actual empty line. Empty para tag gets ignored.

link|flag
I thought you just wanted a line break. I don't think you can have an actual empty line. – Brian Kim Jan 21 at 22:07
how does MS do it with exceptions in methods for example? – flesh Jan 21 at 22:20
Exceptions are separate tags in the XML. It's not a blank line in the summary, it's just rendering different sections of the documentation – bdukes Jan 27 at 19:08
vote up 0 vote down

Based on the comment, how about a with a single, non-printing character in it, like a hard space?

link|flag
Visual Studio's XML parser seems to eat all space characters, even if they are in a CDATA section. – Hosam Aly Jan 21 at 22:16
vote up 1 vote down

Well, it is Xml. Maybe &#10;&#13;

link|flag
nope that doesn't do it either ... – flesh Jan 21 at 22:18
vote up 1 vote down

Your only hope is probably something cludgy like this:

/// <summary>
/// <para>line one</para>
/// <para>_</para>
/// <para>line two</para>
/// </summary>
link|flag
cludgy yes, but thats as close as ive got so far – flesh Jan 21 at 22:22
vote up 0 vote down

/// <summary>
/// <para>To treat comment line like a DIV tag, surround with PARA tags.</para>
/// <para>To add a break with whitespace, add the following:</para>
/// <para>&#160;</para>
/// </summary>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.