Reputation: 1119
I am used to deliver DLLs that built on top of several static libraries(.lib) in the unmanaged environment. Now I need to do similar thing but most lower level libraries are already managed DLLs. For security reasons, I don't want include every functions in these managed libraries. Any suggestions?
Upvotes: 2
Views: 154
Reputation: 27419
Not much you can do here. Your choices are:
Upvotes: 2