-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed some CS1572, 1573, 1574 and 1591 warnings #2063
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding the newlines. Definitely improves readability.
Adding comments per request of Dan Siegel
I have changed the file in an attempt to reduce the confusion identified by Dan Siegel
I have added the following comment to the key parameters
Added comment to the <param> tag for method documentation:: <param name="key">The key for the value to be returned</param> Added following comment tot he <returns> tag for method documentation: Returns a matching parameter of <typeparam name="T" /> if one exists in the Collection
Modified <param> tags on a few methods that check existence of keys/values or return values
Fixed Indentation
Updated comment for InitializationMode
Added <ref> clarification and <remarks> tag as requested by Dan Siegel
Update comment on ModuleState
Add ref summary info as reqeusted
I have made all the requested changes. Please review at your convenience. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All requested changes have been implemented
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have incorporated the requested changes, please let me know if there is anything I missed or any other required changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good just need some updates for the ParametersBase...
I have added text to some of the tags as requested by Dan Siegel
I believe I have made all the required changes |
I have added text to all the empty tags I found
Fixed a typo
Hopefull all the tags have text now. I apologize for missing that. |
public IEnumerable<string> Keys => | ||
_entries.Select(x => x.Key); | ||
|
||
/// <summary> | ||
/// Adds the <paramref name="key" /> and <paramref name="value" /> to the KeyValuePair<string,object> collection |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove the paramref's from here...
Removed paramref
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed paramref
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good thanks for the PR!
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Description of Change
Fixed some CS1572, 1573, 1574 and 1591 warnings
Bugs Fixed
API Changes
None
Behavioral Changes
None
PR Checklist