Getting Object Functionality out of C++ code in C#

后端 未结 3 1898
伪装坚强ぢ
伪装坚强ぢ 2021-01-14 22:43

I have have a function in wrote in C++ that calls some functions in a old lib. This function creates some memory makes the calls and destroys the memory. To optimize this I

3条回答
  •  死守一世寂寞
    2021-01-14 23:25

    If you are willing to change the native C++ code, you could always export it as a COM interface which C# can consume.

提交回复
热议问题