2
Reply

What is difference between .dll and .exe files?

Manish Kumar

Manish Kumar

Oct 31, 2012
2.9k
0

    EXE ASSEMBLY RUNS OUT-PROCESS WHEREAS DLL RUNS IN-PROCESS. EXE HAS MAIN AS STATING POINT WHEREAS DLL DOESN'T HAVE MAIN FOR EXECUTION.

    Prasant Bhardwaj
    March 01, 2014
    0

    .dll files are library files which are used to run the exe files. By default we cant run library files, we need Exe files (executable) to start our application. But exe files need dlls support to run. DLL - dynamic link library

    Nagasundar Nagarajan
    November 07, 2012
    0