Méthode | Description | |
---|---|---|
FreeLibrary ( |
Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count.
|
|
FreeLibrary ( string libraryName ) : void |
Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count.
|
|
GetProcAddress ( |
Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
|
|
GetProcAddress ( string moduleName, string functionName ) : |
Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
|
|
LoadLibrary ( string libraryPath ) : |
Loads the specified module into the address space of the calling process.
|
public static FreeLibrary ( |
||
module | The |
|
Résultat | void |
public static FreeLibrary ( string libraryName ) : void | ||
libraryName | string | The name of the library to free (not case-sensitive). |
Résultat | void |
public static GetProcAddress ( |
||
module | The |
|
functionName | string | The function or variable name, or the function's ordinal value. |
Résultat |
public static GetProcAddress ( string moduleName, string functionName ) : |
||
moduleName | string | The module name (not case-sensitive). |
functionName | string | The function or variable name, or the function's ordinal value. |
Résultat |
public static LoadLibrary ( string libraryPath ) : |
||
libraryPath | string | /// The name of the module. This can be either a library module (a .dll file) or an executable /// module (an .exe file). /// |
Résultat |