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++ 模拟框架编写 API。我想在 C# 中使用这个 API。但是我需要一个指向 C# 框架中的对象的指针,以便我可以对那个对象做一些事情。
所以我尝试了这个:
extern "C" ObjectClass GetObject() { return someOtherObject->getObject(); <-- returns an object of ObjectClass }
这根本不会建立。也许这真的是错误的方式,但不知道如何正确地做到这一点。