Answers for ".net access modifiers"

C#
4

what are access modifiers in c#

'Combination Modifier'| 'Description'
  protected internal    member is accessible to all class that extends
    					the given class and all other classes in the same
                        assembly
  
  private protected	 	accessible by types derived from the conataining 
  						class, but only within its countaining assembly
Posted by: Guest on May-06-2021

C# Answers by Framework

Browse Popular Code Answers by Language