gpt4 book ai didi

c# - 从 UWP C# 应用程序使用 pinvoke 调用 LoadLibrary

转载 作者:行者123 更新时间:2023-11-30 12:21:27 28 4
gpt4 key购买 nike

我正在尝试从 C# UWP 应用程序的非托管 dll 调用方法。我这样做,但在非托管 dll 上调用“LoadLibrary()”以便我可以使用它。

这在 Debug模式下一切正常,但在 Release模式下,我收到一个奇怪的错误:

消息:类初始化方法 Tests.UnitTests.InitializeClient 抛出异常。 System.TypeLoadException: System.TypeLoadException: Unresolved P/Invoke method 'LoadLibrary!kernel32' in assembly 'Client, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' 因为它在 UWP 应用程序中不可用。请使用另一个 API,或使用 [DllImport(ExactSpelling=true) 表明您了解使用非 UWP 应用程序 API 的含义..

这是我调用 Load Library 的方法:

    [DllImport("kernel32", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern IntPtr LoadLibrary(string librayName);

不幸的是,如果我如下添加“ExactSpelling = true”:

    [DllImport("kernel32", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
public static extern IntPtr LoadLibrary(string librayName);

然后调用它会抛出异常:

System.EntryPointNotFoundException:“无法在 DLL“kernel32”中找到名为“LoadLibrary”的入口点。”

非常感谢任何帮助!

最佳答案

改为使用 LoadPackagedLibrary:

[DllImport("API-MS-WIN-CORE-LIBRARYLOADER-L2-1-0.DLL", SetLastError = true)]
public static extern IntPtr LoadPackagedLibrary([MarshalAs(UnmanagedType.LPWStr)]string libraryName, int reserved = 0);

关于c# - 从 UWP C# 应用程序使用 pinvoke 调用 LoadLibrary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45620704/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com