以下MSDN 文档显示了在组合此标头时对编译器无效的内容
[DefaultMemberAttribute("Item")]
public abstract class ReadOnlyEnvelopeRecipientCollection : IEnumerable<EnvelopeRecipient>, IEnumerable
有了这个属性
public abstract EnvelopeRecipient [int index] { get; }
编译器抛出此错误
“无法在包含索引器的类型上指定 DefaultMember 属性”
文档不正确还是有更好的方法来实现?