C#文档添加有关属性的信息

时间:2018-09-28 06:06:31

标签: c# doxygen sandcastle xml-documentation

我在C#中使用XML文档,并使用doxygen或sandcastle生成帮助文件。 我想知道是否有机会将有关使用过的属性的信息放入文档中。

假设我想告知ProtoMember用作属性的顺序:

[ProtoContract]
public class Person{

    /// <summary>  Gets or sets the Age of a person. </summary>
    [ProtoMember(1)]
    public Int32 Age {get; set;}

}

1 个答案:

答案 0 :(得分:0)

我最终使用了docFx。一个很好的选择。此代码还显示了每个属性的属性,因此可读。