Confusions related to Dll.
-
Can anyone tell me what is the main purpose of Dll? As we can get the data from Dll, can we put the data in Dll? I am not talking about code, talking about single Dll. If you know about Dll then please share your knowledge..
-
Can anyone tell me what is the main purpose of Dll? As we can get the data from Dll, can we put the data in Dll? I am not talking about code, talking about single Dll. If you know about Dll then please share your knowledge..
-
Can anyone tell me what is the main purpose of Dll? As we can get the data from Dll, can we put the data in Dll? I am not talking about code, talking about single Dll. If you know about Dll then please share your knowledge..
Dll is nothing but a reusable code.. its a dead thing it need to invoke from some where .. by it self DLL cant do anything. dll can be in any language that supports Pointer Functionality. Dll is used to process the data Dll is used to apply Business logic Dll can be called from any place. can you please specify what exactly you are looking here in some specific manner???
vikas da
-
Can anyone tell me what is the main purpose of Dll? As we can get the data from Dll, can we put the data in Dll? I am not talking about code, talking about single Dll. If you know about Dll then please share your knowledge..
Nilesh Hamane wrote:
Can anyone tell me what is the main purpose of Dll?
Consider you know some function that can be helpful to other programmers and, they are ready to pay you for it, so how would you prefer to give it? you can give your source code, os a better option would be to compile your code as a dll and then sell, because the dll after compilation gets converted to machine code.
Nilesh Hamane wrote:
As we can get the data from Dll, can we put the data in Dll?
This is not the purpose of dlls, you should use files or databases for storing your application data.
-Suhredayan