Best Way to Port MFC COM Server to Managed Code

I am working on a suite of applications consisting of several automation servers written using MFC, and this is legacy code. These applications communicate through COM interfaces and other events. Most of these applications provide several kinds of forms with various input controls for collecting information. I was wondering what would be the best way to transfer these applications to a managed one application at a time. Any advice ... We work in our own code, but transferring the code base to the managed world is my personal idea, because I see a lot of functionality that can be achieved better if the code is written as managed code.

Thanks Byte

+3
source share
1 answer

You can write new server parts using C ++ / CLI . It looks less painful.

+1
source

Source: https://habr.com/ru/post/1722038/


All Articles