///を使用して関数にコメントを付けるのが正しい方法であり、次のコードに示すようにプロパティに対しても機能することを知っています。
/// <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行の///よりも、インテリセンスのクラスプロパティにコメントを付ける簡単な方法があるかどうか疑問に思っています。