Creating a C# DLL and using it from unmanaged C++
- by John
I have a native (unmanaged) C++ application (using wxWidgets for what it's worth). I'm considering a separate tool application to be written in C# which would contain winform-based dialogs. putting some of those dialogs in a separate DLL would be useful as I'd hope to be able to use them from my C++ app.
But I have no idea how much messing about is needed to accomplish this, is it particularly easy?