Passing data between C++ (MFC) app and C#

前端 未结 9 1378
一向
一向 2020-12-31 17:45

We have a monolithic MFC GUI app that is nearing the end of it\'s life in C++. We are planning to build new functionality in C# and pass data between each app.

Quest

9条回答
  •  南方客
    南方客 (楼主)
    2020-12-31 18:16

    You can also use P/Invoke from the managed side - this would be useful if the MFC app has a C API. Also you can use COM from either side.

提交回复
热议问题