简述private、protected、public、internal 修饰符的访问权限

private: 私有成员, 在类的内部才可以访问

protected: 受保护成员,该类内部和继承类中可以访问

public: 公共成员,完全公开,没有访问限制

internal: 当前程序集内可以访问

原文地址:https://www.cnblogs.com/hanningHNN/p/13761807.html