as 类的可见性 与 类成员的可见性

/* 类的可见性: */
dynamic  //动态类, 可在运行时向实例添加成员
final    //密封类, 不能被继承
internal //包内可见(默认)
public   //包内外可见(常用)
 
/* 类成员可见性: */
internal             //包中可见(默认)
private              //类中可见
protected            //类及派生类中可见
public               //类内外、包内外都可见
static               //静态成员; 属于该类但不属于该类的实例
UserDefinedNamespace //使用自定义的命名空间指定可见性

原文地址:https://www.cnblogs.com/flashweb/p/3528521.html