Writing DLL's in Managed C++

G

Guest

Hi

I am currently working on a managed c++ project. I have a part of the code that is quite isolated from the rest of the project and wanted to encapsulate it in a DLL so that it could be updated independent of the executable. I am just learning how to work with DLL projects and was wondering if I have the right idea of how they work. Can I put the classes that are isolated in a DLL project and just include those in the main project like I do for mscorlib.dll? And if so, does it read from that at runtime so that I could just replace the DLL with a newer copy without rebuilding the project

Thank you
Tim
 
R

Ronald Laeremans [MSFT]

Yes. We even have a managed C++ Library project type.

Ronald Laeremans
Visual C++ team

Tim said:
Hi,

I am currently working on a managed c++ project. I have a part of the
code that is quite isolated from the rest of the project and wanted to
encapsulate it in a DLL so that it could be updated independent of the
executable. I am just learning how to work with DLL projects and was
wondering if I have the right idea of how they work. Can I put the classes
that are isolated in a DLL project and just include those in the main
project like I do for mscorlib.dll? And if so, does it read from that at
runtime so that I could just replace the DLL with a newer copy without
rebuilding the project?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top