我在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;}
}