+ 1
What are access modifiers?
2 Answers
+ 4
An access modifier is a way to declare how protected a method or variable should be.
Private: Only this class can use it.
Public: Everyone can use it.
Protected: Only this and derived classes can use this.
There are some more, but these are the most used.
0
internal = private ?