Appropriate comments for overloaded methods are not retrieved
hnx8 opened this issue · 0 comments
hnx8 commented
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.