Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.09 KB

Summary.DocMethod.md

File metadata and controls

45 lines (33 loc) · 1.09 KB
public record DocMethod : DocMember

A DocMember that represents a documented method in the parsed source code.

Properties

public required DocTypeParam[] TypeParams { get; init; }

The type parameters of the method.

public required DocParam[] Params { get; init; }

The parameters of the method.

public required bool Delegate { get; init; }

Whether this method represents a delegate.

public string Signature { get; }

The full signature of the method that includes both type parameters and regular parameters (e.g., "Method<T1, T2>(int, short)").

public string FullyQualifiedSignature { get; }

The full signature of the method that includes both type parameters and regular parameters (e.g., "Method<T1, T2>(int, short)").