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.
从 MSDN ,内部:访问仅限于当前程序集。
所以如果我有单个项目 winform1 ,使用 internal 修饰符是否意味着访问我项目中的任何类?
我的意思是在单个项目中,当前项目上下文和当前程序集的含义相同吗?
在单个项目中,当前项目上下文和当前程序集的含义是否相同?
是的。
只要你真的只有1个项目,internal而且public都是一样的。但是请意识到,在任何重要的项目中,您迟早会想要细分为多个程序集。因此,您不妨为此做好准备并正确使用这些修饰符。这意味着(几乎)每堂课internal。这是默认设置是有原因的。
internal
public