当前位置:  开发笔记 > 编程语言 > 正文

我可以在构造函数注释中引用属性注释吗?

如何解决《我可以在构造函数注释中引用属性注释吗?》经验,为你挑选了1个好方法。

如果我的类有一个注释的公共属性(通过构造函数赋值),我可以从具有相同名称的构造函数参数的描述中引用它的描述吗?

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命名约定,其中公共成员以大写字母开头.



1> Jon Skeet..:

您不能包含说明,但可以使用标记链接到属性文档.例如:

The initial value for 

顺便说一句,我强烈建议您遵循.NET命名约定,其中公共成员以大写字母开头.

推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有