VB .Net Question:
Download Job Interview Questions and Answers PDF
What is the difference between .dll extension and .exe extension files?
Answer:
The main difference between .dll and .exe is
.dll is the In process component where it take up the client's memory space to run. So the communication between the application and component(dll) is very fast.
.EXE is the Out of process component. It uses its own memory(not application memory) to run the component. The communication between the application and component is slow when compared to .dll
.dll is the In process component where it take up the client's memory space to run. So the communication between the application and component(dll) is very fast.
.EXE is the Out of process component. It uses its own memory(not application memory) to run the component. The communication between the application and component is slow when compared to .dll
Download VB .Net Interview Questions And Answers
PDF
Previous Question | Next Question |
How VB Implements the Disconnected Architecture as like VB.Net? | What is the base class of .net? |