📜  c#代码示例中的访问修饰符是什么

📅  最后修改于: 2022-03-11 14:49:07.142000             🧑  作者: Mango

代码示例1
'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