I want to know the exact difference between the dll and exe file.
|
1
|
|||||||||
|
|
|
EXE:
DLL:
For More Details: http://www.c-sharpcorner.com/Interviews/Answer/Answers.aspxQuestionId=1431&MajorCategoryId=1&MinorCategoryId=1 http://wiki.answers.com/Q/What_is_the_difference_between_an_EXE_and_a_DLL Reference: http://www.dotnetspider.com/forum/34260-What-difference-between-dll-exe.aspx |
||||||||||||
|
|
|
An exe is an executible program whereas A DLL is a file that can be loaded and executed by programs dynamically. |
||
|
|
An EXE is visible to the system as a regular Win32 executable. Its entry point refers to a small loader which initializes the .NET runtime and tells it to load and execute the assembly contained in the EXE. A DLL is visible to the system as a Win32 DLL but most likely without any entry points. The .NET runtime stores information about the contained assembly in its own header.
|
||
|
|
|
|
DLL is In-process component and EXE is out of process component. |
||
|
|
|
|
The major exact difference between DLL and EXE that DLL hasn't got an entry point and EXE does. If you are familiar with c++ you can see that build EXE has main() entry function and DLL doesn't :) |
||
|
|
|
I don't know why everybody is answering this question in context of .NET. The question was a general one and didn't mention .NET anywhere. Well, the major differences are: EXE
DLL
The file format of DLL and exe is essentially the same. Windows recognizes the difference between DLL and EXE through PE Header in the file. For details of PE Header, You can have a look at this Article on MSDN |
|||
|
|
|
|
This answer was a little more detailed than I thought but read it through. DLL: For example: This "button" library is required by EXEcutables to run, and without it they will not run because they don't know how to create the button, only how to talk to it. Likewise, a DLL cannot be executed - run, because it's only a part of the program but doesn't have the information required to create a "process". EXE: hope this helps.... |
||
|
|
|
|
thanks for sharing the information. |
||
|
|
|
The difference is that an EXE has an entry point, a "main" method that will run on execution. The code within a DLL needs to be called from another application. |
||
|
|
|
|
The .exe is the program. The .dll is a library that a .exe (or another .dll) may call into. What sakthivignesh says can be true in that one .exe can use another as if it were a library, and this is done (for example) with some COM components. In this case, the "slave" .exe is a separate program (strictly speaking, a separate process - perhaps running on a separate machine), but one that accepts and handles requests from other programs/components/whatever. However, if you just pick a random .exe and .dll from a folder in your Program Files, odds are that COM isn't relevant - they are just a program and its dynamically-linked libraries. Using Win32 APIs, a program can load and use a DLL using the LoadLibrary and GetProcAddress API functions, IIRC. There were similar functions in Win16. COM is in many ways an evolution of the DLL idea, originally concieved as the basis for OLE2, whereas .NET is the descendant of COM. DLLs have been around since Windows 1, IIRC. They were originally a way of sharing binary code (particularly system APIs) between multiple running programs in order to minimise memory use. |
||
|
|
