根据这篇文章,可以获得多行 XML 注释——而不是使用///
,使用/** */
。这是我对多行注释的解释,以及我想要发生的事情:
/**
* <summary>
* this comment is on line 1 in the tooltip
* this comment is on line 2 in the tooltip
* </summary>
*/
但是,当我使用此表单时,当我将鼠标悬停在我的代码中的类名上时弹出的工具提示是单行的,即看起来就像我写的评论是这样的:
/// <summary>
/// this comment is on line 1 in the tooltip
/// this comment is on line 2 in the tooltip
/// </summary>
这种行为实际上仍然可能在 VS2008 中吗?
编辑
gabe 指出我误解了“多行”的含义,我实际上需要使用<para>
或<br>
获得我想要的效果。我继续使用<br>
,因为我想控制换行符发生的位置,即
/// <summary>
/// this comment is on line 1 in the tooltip<br/>
/// this comment is on line 2 in the tooltip<br/>
/// </summary>
当我在我的代码中查看该类的工具提示时,所有内容仍以一行结束... WTH?我在这里做错了吗?
更新
好的,我继续尝试了<para>
每一行的标签,这很有效。不知道为什么<br/>
不。
/// <summary>
/// <para>this comment is on line 1 in the tooltip</para>
/// <para>this comment is on line 2 in the tooltip</para>
/// </summary>