本文介绍了无法在Windows应用商店中加载DLL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的windows商店应用程序的bin / debug文件夹中放了一个dll。并且我写了以下代码来加载我的dll
i have placed a dll in my bin/debug folder in my windows store application. and i have written following code to load my dll
[DllImport(@"DemoAPIWrapper.dll", CharSet = CharSet.Unicode)]
private extern static bool SetInputMgrConfig();
但我得到的错误就像
System.DllNotFoundException:无法加载DLL' 'DemoAPIWrapper.dll'':找不到指定的模块。 (HRESULT的例外情况:0x8007007E)
你可以帮我解决一下如何加载那个dll
but i got error like
System.DllNotFoundException: Unable to load DLL ''DemoAPIWrapper.dll'': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
can you please help me how to load that dll
推荐答案
这篇关于无法在Windows应用商店中加载DLL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!