Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Load() [2/2]

static IntPtr System.Runtime.InteropServices.NativeLibrary.Load ( string libraryPath)
inlinestatic

Definition at line 29 of file NativeLibrary.cs.

30 {
31 if (libraryPath == null)
32 {
33 throw new ArgumentNullException("libraryPath");
34 }
35 return LoadFromPath(libraryPath, throwOnError: true);
36 }
static IntPtr LoadFromPath(string libraryName, bool throwOnError)

References System.Runtime.InteropServices.NativeLibrary.LoadFromPath().

Referenced by System.Runtime.Loader.AssemblyLoadContext.LoadUnmanagedDllFromPath().