xml注释中的回车符或换行符

时间:2014-02-10 14:41:31

标签: c# xml visual-studio-2012

我正在尝试找到一种方法将回车/换行放在我的属性的xml注释中。现在,当提示出现在intellisense中时,线条全部聚集在一起,使其难以阅读: enter image description here

我希望它看起来像这样:

enter image description here

这是xml的样子:

///<summary>
///Question:
/// 'Are you sure you wish to delete the selected |Value|'
///<para>Replace |Value| with the entity name of choice.</para>
///</summary>
internal const string ConfirmEntityDelete = "Are you sure you wish to delete the selected |Value|?";

据我所知,xml无法识别空格,因此我无法使用空<para>标记。我唯一幸运的方法是使用段<para>.</para>的para标签。它在提示中可见,但至少它使它更具可读性。

我看过这里http://msdn.microsoft.com/en-us/library/5ast78ax(v=vs.110).aspx并找到了所有可以使用的标签,并且已经尝试了所有这些标签,但没有任何运气。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:2)

也许是这样的?它会添加回车但不是空行。

/// <summary> 
/// Your main comment 
/// <para>&#160;</para> 
/// <para>The rest of the comment</para> 
/// </summary> 
public void CommentMethod()
{
}

编辑:找到并添加字符以显示新行。我知道我之前做过类似的事情。