what are access modifiers in csharp

Code Example - what are access modifiers in csharp

                
                        '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