c# - Automatically Refactor Access Modifiers -
Is there any device that can be run through a visual studio solution and doing anything in the solution? Can the use modifier be adjusted for private or internal where applicable?
I think that I can only convert everything to private, and then use compiler messages and do it by hand ... but it may take some time, if any automated, this is great Will happen!
You can analyze your code for content in this way. It has a query language like a SQL, where you can select all the members, which are public and can be internal or personal, like:
Select methods where possible Select methods where possible
Edit: View this blog post.
Comments
Post a Comment