我知道使用 /// 来注释函数是正确的方法,它也适用于属性,如下面的代码所示
/// <summary>
/// This is for demo
/// </summary>
public class Foo
{
/// <summary>
/// Description A (working for intellisense)
/// </summary>
public int iA { get; set; }
/// Description B (not working for intellisense)
public int iB { get; set; }
public int iC { get; set; }
}
我想知道是否有比 /// 更简单的方法来评论智能感知的类属性,而 /// 最少 3 行。