Training
Module
Call methods from the .NET Class Library using C# - Training
Use functionality in the .NET Class Library by calling methods that return values, accept input parameters, and more.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Processes that explicitly link to a DLL call the FreeLibrary function when the DLL module is no longer needed. This function decrements the module's reference count. And, if the reference count is zero, it's unmapped from the address space of the process.
In an MFC application, use AfxFreeLibrary instead of FreeLibrary
to unload an MFC extension DLL. The interface (function prototype) for AfxFreeLibrary
is the same as FreeLibrary
.
Create C/C++ DLLs in Visual Studio
FreeLibrary
AfxFreeLibrary
Training
Module
Call methods from the .NET Class Library using C# - Training
Use functionality in the .NET Class Library by calling methods that return values, accept input parameters, and more.