C Sharp (C#) - Classes and Objects
Which access modifier allows a class member to be accessed from any other code in the same project or assembly?
Which access modifier allows a class member to be accessed from any other code in the same project or assembly?
internal modifier allows access within the same assembly or project but not outside it.private restricts access to the same class only, public allows access from anywhere, and protected allows access in derived classes.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions