MarkdownGenerator icon indicating copy to clipboard operation
MarkdownGenerator copied to clipboard

Appropriate comments for overloaded methods are not retrieved

Open hnx8 opened this issue 4 years ago • 0 comments

A particular one has been adopted for comments on overloaded methods.

example:

/// <summary>Get all Data.</summary>
void Get() { .... }

/// <summary>Get the data specified by key.</summary>
void Get(string key) { .... }

Actual:

Type Name Summary
void Get() Get all Data.
void Get(String key) Get all Data.

Expected:

Type Name Summary
void Get() Get all Data.
void Get(String key) Get the data specified by key.

For overload methods, Please give priority to the comment of the method whose argument name exactly matches.

hnx8 avatar Apr 25 '21 05:04 hnx8