|
For more information about DLLs and the .NET Framework assemblies, visit the following Microsoft Web sites: |
|
Read more...
|
|
Types of DLLsWhen you load a DLL in an application, two methods of linking let you call the exported DLL functions. The two methods of linking are load-time dynamic linking and run-time dynamic linking. |
|
Read more...
|
|
|
A DLL is a library that contains code and data that can be used by more than one program at the same time. For example, in Windows operating systems, the Comdlg32 DLL performs common dialog box related functions. Therefore, each program can use the functionality that is contained in this DLL to implement an Open dialog box. This helps promote code reuse and efficient memory usage. |
|
Read more...
|
|
|