The following access modifiers are available:

C# ModifierDefinition
publicThe type or member can be accessed by any other code in the same assembly or another assembly that references it.
privateThe type or member can only be accessed by code in the same class.
protectedThe type or member can only be accessed by code in the same class or in a derived class.
internalThe type or member can be accessed by any code in the same assembly, but not from another assembly.
protected internalThe type or member can be accessed by any code in the same assembly, or by any derived class in another assembly.
private protectedThe type or member can be accessed by code in the same class or in a derived class within the base class assembly.
Last modified: March 20, 2019

Author

Comments

Write a Reply or Comment