Answers for "access modifiers in c# in detail"

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

Code answers related to "access modifiers in c# in detail"

C# Answers by Framework

Browse Popular Code Answers by Language