-
Notifications
You must be signed in to change notification settings - Fork 330
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
more modern coding style #196
Conversation
- use collection expressions - removed prefix m_ from private fields
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.
Just the one comment now - I support removing the C-style m
prefix, but I'd like to retain the C#-style _
prefix for private fields, if for no other reason than it makes it much easier to determine, at a glance, the difference between a local var and an instance field. Thoughts?
src/log4net.Tests/Appender/AdoNet/Log4NetParameterCollection.cs
Outdated
Show resolved
Hide resolved
Alright. You convinced me. |
I don't mind - wherever is most convenient (: |
f0083f7
to
8284d7b
Compare
@fluffynuts I've adjusted the names with the help of the refactoring in rider and added the missing entries in .editorconfig. |
_
for private fields