问候
在为属性/字段/方法等设置摘要时。是否可以在其中添加换行符?
/// <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
,但这不起作用。有没有办法做到这一点?