Calling C# from native C++, without /clr or COM?

后端 未结 2 621
無奈伤痛
無奈伤痛 2020-12-16 03:33

This question has been asked before, but I never found a truly satisfying solution -

I have a class library written in C#, and I want to call it from a legacy native

2条回答
  •  自闭症患者
    2020-12-16 04:03

    If you want to do this cross platform, I would recommend going with a 100% Mono approach.

    Mono has a clean Embedding API which works on Linux and Windows.

提交回复
热议问题