Help required abt Dynamic dll.
-
Can Any one Help me Abt Dynamic(Runtime) Dll, how to implement it in C#.Net. When ever i am compiling my project all the dll should not be compiled. It means that a particular dll has to be loaded when ever i had called, else it should not. Shashidhar.
-
Can Any one Help me Abt Dynamic(Runtime) Dll, how to implement it in C#.Net. When ever i am compiling my project all the dll should not be compiled. It means that a particular dll has to be loaded when ever i had called, else it should not. Shashidhar.
Sorry I'm not completely understanding, do you want to compile the dll conditionally, only when you want, or do you mean that the application should only load the DLL when it is needed (which is the decault behavior in .NET anyway) ?
-
Sorry I'm not completely understanding, do you want to compile the dll conditionally, only when you want, or do you mean that the application should only load the DLL when it is needed (which is the decault behavior in .NET anyway) ?
My requirement is to have multiple .Net dlls, which has similar functionalities exposed (so that I can expose functions of same signature). One of these dlls should be loaded at runtime based on user's selection of dll file name. In effect I need to support my application in such a way that, even after initial deployment, I will be able to deploy additional dlls (additional dlls alone will be separately deployed), which user can select at runtime. Shashidhar