Re: DLL inside another DLL
Do you have the source code for both of these? If so, then you can make it happen relatively easily, though it comes at the caveat that you want to either:
1) Never need to update the dll.
Or
2) Have the second one ONLY exist inside the first one, rather than have it be sometimes included, and sometimes used on its own.
Re: DLL inside another DLL
No, I dont' have the source code for the second one, only the dll.
I want to update the first dll.
I just want to use some methodes from the second dll, no other processes will use the second dll
Re: DLL inside another DLL
Why cant you just do what every other program in the world does and deploy that DLL with your application/DLL? All you need is to add a reference to it and then it just needs to be in the same directory that your app is running from or in the GAC
Re: DLL inside another DLL
My first dll will be a wrapper for the second one.
But I have quite a lot of these dll files, and I don't want my installation directory cluttered with thousands of 10kb dll's, but rather have a few bigger ones.