YPrime interview question

List and describe access modifiers?

Interview Answer

Anonymous

11 Apr 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