LoadLibraryW

[DllImport("coredll.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern IntPtr LoadLibraryW(
   string lpLibFileName
);

Microsoft documentation: Link

Last updated