仅评论和描述我的属性代码一次

时间:2015-02-27 09:33:28

标签: c# properties attributes comments propertygrid

我想使用属性的xml摘要注释将其显示为属性网格描述。为此,我需要定义一个额外的DescriptionAttribute,它将包含完全相同的文本。

有没有办法实现这一点,这不需要我复制和粘贴每个属性的每个评论或描述?

据我所知,评论没有编译,所以我没有看到在运行时使用自定义属性提取注释的方法。如果有解决方案可以将评论文本加倍,我也可以反过来。

    /// <summary>
    /// My Description of this property
    /// </summary>
    [Description("My identical Description again - is there a way to only write it once?")]
    public object MyProperty { get; set; }

0 个答案:

没有答案