我试图添加一个C DLL到
Windows Phone 8框架在Visual Studio Express 2012中.
原文链接:https://www.f2er.com/windows/369974.html我尝试了以下几种方法
>通过PInvoke导入和调用
[DllImport(“WP8DLL.dll”,CallingConvention = CallingConvention.Cdecl)]
public static extern int functionReturningInteger();
结果:尽管没有编译错误,但是当我尝试访问DLL的方法时,它会抛出System.NotSupportedException.
>在项目属性中添加引用
结果:我收到消息“对较高版本或不兼容程序集的引用无法添加到项目”