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.
我有一个包含一堆类(比如 20 个)的类库。我想将其中一个类作为类型库公开给 vb6 客户端。
我必须将单个类放在单独的类库中还是有办法公开单个类?我已经阅读了一些示例,这些示例假设类库中的每个类都是可见的。
IDE 提供了一种使所有公共类在类型库中可见的快速方法。但这不是唯一的选择,您还可以将<ComVisible(true)>代码中的属性应用于每个单独的类和接口。
<ComVisible(true)>