Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Greetings

When setting a summary for a property / field / method etc.. is it possible to have a newline in it?

/// <summary>
/// This is line 1
/// This is line 2
/// </summary>
public bool TestLine { get; set; }

When I set this it shows as on mouse over:

bool TestLine
This is line 1 This is line 2

But I want it to show as:

bool TestLine
This is line 1 
This is line 2

I've tried using \n but that doesn't work. Is there any way to get this done?

share|improve this question
same as stackoverflow.com/questions/6060416/newline-in-object-summary – Daniël Tulp Mar 26 at 14:38

3 Answers

up vote 21 down vote accepted

You want to use some thing like this

/// <summary> 
/// Your Main comment 
/// <para>This is line 1</para> 
/// <para>This is line 2</para> 
/// </summary> 
public bool TestLine { get; set; }
share|improve this answer
Works like a charm. Thank you! – Theun Arbeider May 19 '11 at 14:50
@Levisaxos - You are most welcome, glad it helped. – YetAnotherUser May 19 '11 at 14:52
@YetAnotherUser, what about a blank line? – Behzad May 6 at 18:18
@Behzad try using <para>&nbsp;</para>. – YetAnotherUser May 6 at 20:17

Yes:

/// <summary> 
/// Main comment 
/// <para>Line 1</para> 
/// <para>Line 2</para> 
/// </summary> 
public bool TestLine { get; set; }
share|improve this answer
a few seconds too late, and not a single vote! :) – Mitch Wheat May 20 '11 at 2:58
In that case, here's a vote :P – Theun Arbeider May 20 '11 at 6:07
@Levisaxos: lol, cheers! – Mitch Wheat May 20 '11 at 6:08

I know this is old but I just wanted to add this answer as this is the top result on Google.

You can legitimately add para tags, but this actually creates a new paragraph for each new line and the line spacing appears off, I personally add 1 para around the paragraph and then br tags at the end of the lines I wanted a break on, which preserves decent line spacing:

/// <summary> 
/// <para>Main comment<br /> 
/// Line 1<br />
/// Line 2</para> 
/// </summary>
public bool TestLine { get; set; }
share|improve this answer
This doesn't work, and there's nothing off about the spacing with <para>. What version of VS/.Net are you using? – Dani Feb 6 at 17:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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