Interview Questions

How is meant by DLL ?

.NET Interview Questions and Answers


(Continued from previous question...)

How is meant by DLL ?

A DLL (Dynamic Link Library) is a file that can be loaded and executed by programs dynamically. Basically it’s an external code repository for programs. Since usually several different programs reuse the same DLL instead of having that code in their own file, this dramatically reduces required storage space. A synonym for a DLL would be library.

(Continued on next question...)

Other Interview Questions