public record DocParam(DocType? Type, string Name)
A parameter of a DocMethod
.
public DocType? Type { get; }
The type of the parameter.
public string Name { get; }
The name of the parameter.
public DocCommentElement? Comment(DocMember parent)
The comment of the parameter (i.e., <param>
tag).