.dll and .exe files?
what is .dll and .exe files and is difference between them?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pranay RanaPosted Mar 4, 2015, 6:39 AM
EXE file have entry point. i.e. point from which execution get started. For example consider windows from, console or wpf application in that you find
public static void main() - which is entry point.
Where as DLL does not have entry point. DLLs are loaded into an application (ie they can't run by themselves).
Ashish Kumar PandayPosted Mar 4, 2015, 6:21 AM