public record DocCommentLink(DocMember? Member, string Value) : DocCommentNode
A DocCommentNode
that represents the link to other member (e.g. <see cref="SomeMember"/>
).
public DocMember? Member { get; }
The doc member the link references to.
public string Value { get; }
The name of the member the link links to.