【发布时间】:2011-08-28 23:02:09
【问题描述】:
问候
在为属性/字段/方法等设置摘要时。是否可以在其中添加换行符?
/// <summary>
/// This is line 1
/// This is line 2
/// </summary>
public bool TestLine { get; set; }
当我设置它时,它显示为鼠标悬停:
bool TestLine This is line 1 This is line 2
但我希望它显示为:
bool TestLine This is line 1 This is line 2
我尝试过使用\n,但这不起作用。有什么办法可以做到吗?
【问题讨论】: