如果我的类有一个注释的公共属性(通过构造函数赋值),我可以从具有相同名称的构造函数参数的描述中引用它的描述吗?
public class MyClass { ////// x description /// public int x { get; private set; } ////// y description /// public int y { get; private set; } ////// Constructor description /// /// How do I reference x description from here? /// And y description? public MyClass(int x, int y) { this.x = x; this.y = y; } }
Jon Skeet.. 9
您不能包含说明,但可以使用
标记链接到属性文档.例如:
The initial value for
顺便说一句,我强烈建议您遵循.NET命名约定,其中公共成员以大写字母开头.
您不能包含说明,但可以使用
标记链接到属性文档.例如:
The initial value for
顺便说一句,我强烈建议您遵循.NET命名约定,其中公共成员以大写字母开头.