What is the difference between compiling a dynamic Library and an Executable file???? Which one is better for everyday-use-applications???
Printable View
What is the difference between compiling a dynamic Library and an Executable file???? Which one is better for everyday-use-applications???
Hi,
Go with the EXE. The DLL are generally used to store functions that can be used by multiple application (exe).
Steph
DLL's are not standalone applications, they are not executable in other words, the big difference between executables and dynamic link libraries is that all classes are private in a exe while a dll can share their classes to other projects. There's no which is better, they serve different purposes.