DynamicallyLoadedLibrary.this

Load a DLL (or fail with an exception)

class DynamicallyLoadedLibrary
this
(
in string library
)

Parameters

library string

name or path to a library

Notes: If you don't use a full path, the search order will be defined by whatever the system linker does by default. Always using fully qualified pathnames can help prevent code injection attacks (eg via manipulation of LD_LIBRARY_PATH on Linux)

Meta