Question d’entretien chez YPrime

List and describe access modifiers?

Réponse à la question d'entretien

Utilisateur anonyme

11 avr. 2019

Private, protected, public and internal. Private is accessible only within the class, protected is accessible within the class and its children, public is openly access and internal is accessible anywhere within the same assembly.

1