Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 553 Bytes

Summary.DocCommentLink.md

File metadata and controls

22 lines (16 loc) · 553 Bytes
public record DocCommentLink(DocMember? Member, string Value) : DocCommentNode

A DocCommentNode that represents the link to other member (e.g. <see cref="SomeMember"/>).

Properties

public DocMember? Member { get; }

The doc member the link references to.

public string Value { get; }

The name of the member the link links to.