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.
我有三个具有这种关系的本机 C++ 类:
A <- B <- C
whereA <- B表示class B实例化并使用指向class A.
A <- B
class B
class A
我希望编写一个 C# 包装器,class C以便可以从 C# 调用它的函数。
class C
我的问题是我是否也需要为class Aand编写包装器class B?注意,类A,B,C都编译为.lib文件中的静态库。
A,B,C
.lib
C可以继续在本机模式下直接调用B/ 。A您只需要处理直接从托管代码调用的类的表面区域上的本机/托管互操作。
C
B
A