When defining a class as internal, you define how public fields will usually be as internal? Or will you leave them public? I have a set of classes with public / private methods that I decided to set as internal. Now, should I change the class modifier to internal and leave the remaining methods / properties as they are (public / private) or switch them to (internal / private)?
I don’t see much point in changing it to internal, and if for some reason I want to return them to the public later, it will give a lot of work to send them back for publication.
Any other thoughts on this?
source
share