最佳答案
你好
当为属性/字段/方法等设置摘要时..。有没有可能换行?
/// <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
,但是没有用。有什么办法可以做到这一点吗?