I have an MFC application that uses several MFC extension DLLs. I want this application (and several other similar applications) to be available to access some parts of the .net infrastructure. I wrote a C # library to do the .net work that I want, and was hoping I could write an MFC dll to hide all the C ++ / CLI code from my applications. Applications will remain pure MFC applications, and the only C ++ / CLI code will be in my new MFX DLL extension. However, when I did this, the applications crashed while accessing the new MFC C ++ / CLI DLL. If I put C ++ / CLI code in applications, it works fine, and I can completely debug my way to C #.
Does anyone understand why the dll idea is not working?
thank
Bruce
source
share