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.
我申请InternalsVisibleTo了我的一个项目,以使其内部结构对测试项目可见。但是,(我知道这很奇怪)我需要标记一些内部类,以便它们对通过InternalsVisibleTo.
InternalsVisibleTo
编译器知道我可以为此应用任何属性吗?
安德森席尔瓦是正确的。没有办法做到这一点。您应该考虑将类型移动到新程序集。或者,您可以考虑应用该[EditorBrowsable(EditorBrowsableState.Never)]属性来隐藏 IntelliSense 中的类型,尽管如果用户知道它们,代码将编译。
[EditorBrowsable(EditorBrowsableState.Never)]