+ 2
What is calling outside of the class?
public private protected internal etc.
1 ответ
+ 9
Public properties can be called from, or accessed outside of the class. Private ones can only be called from within the class explicitly. Protected properties can be accessed by child classes of the parent, and will not be accessed publicly.