MarkdownGenerator
MarkdownGenerator copied to clipboard
Appropriate comments for overloaded methods are not retrieved
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.