0
I am Just beginer, and i can not understand What is the Main difference between privet and protected in c#?
3 Respuestas
0
Protected
The second level is “protected.” Protected properties and methods can be accessed from inside the class they are declared, or in any class that extends them. They can’t be accessed from outside the class or subclass.
Private
While protected properties and methods are accessible anywhere in the object, the third level “private” is more restrictive.
A private property or method can’t be accessed by a subclass of the class it is defined in. If you have a class with a protected property and a private property and then extend that class in the subclass, you can access the protected property, but not the private property.
Hope you may understand~
0
Privet Здароваааа 😉
Full list of access modifiers:
Public - can be accessed from anywhere.
Protected - can be accessed from classes which derive from this class.
Internal - can be accessed only within defined dll\application
Private - can be accessed only within a class
p.s. Internal protected is also a valid access modifier