Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB.NET 15.5 为类成员引入了额外的访问级别:Private Protected,如此处和此处所述。
Private Protected
举个例子
Private Protected internalValue As Integer
我的理解是这应该等同于 just Protected,这意味着它可以在同一个类及其子类中访问,但不能在外部访问。
Protected
那么这在什么时候有用,对Protected会员有什么不同呢?
Private Protected 修饰符使派生类型可以访问类成员,但只能在其包含的程序集中访问。
如果没有Private,Protected则不同程序集中的派生类也可以访问成员。
Private