|
-
Mar 7th, 2001, 10:52 AM
#1
Thread Starter
Hyperactive Member
What is the difference between compiling a dynamic Library and an Executable file???? Which one is better for everyday-use-applications???
-
Mar 9th, 2001, 06:12 AM
#2
Fanatic Member
This is purely a design issue. EXE's are out of process and run in their own thread space, therefore there is a marshalling overhead between the app and the EXE. The DLL is in process and uses the same thread space as the app that called it therefore less overhead and a bit quicker. However you need to know the intention of the dll before you can decide which one to use. If it's a sinigle pc app then go for the dll.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|