1

我在 C++ 中创建了一个 DLL 文件。我想将它导入到我的 Windows Phone 项目中。我遵循了来自不同来源的许多说明,即使我运行我的代码,我也收到以下错误:

尝试访问该方法失败:rough.MainPage.Add(System.Int32, System.Int32)。

我的 windows phone c# 代码在这里:

*//Here is C# code for Windows Phone
namespace testRsa
{
    using System.Runtime.InteropServices;

    public partial class MainPage : PhoneApplicationPage
    {
        [DllImport("myfunc.dll", EntryPoint = "Add", CallingConvention =          CallingConvention.StdCall)]
        static extern int Add(int a, int b);

        // Constructor
        public MainPage()
        {
            InitializeComponent();
            int result = Add(27, 28);
            System.Diagnostics.Debug.WriteLine(7);
        }
    }
}

我的 dll .h 文件在这里:

#include "stdafx.h"
#include "myfunc.h"
#include <stdexcept>

using namespace std;


double __stdcall Add(double a, double b)
{
    return a + b;

}

我的 Dll .cpp 文件在这里:#include "stdafx.h" #include "myfunc.h" #include

using namespace std;
double __stdcall Add(double a, double b)
{
    return a + b;

}
4

2 回答 2

1

要将使用 C++ 导入 C# 项目,您必须使其在托管代码中可见。为此,您应该在新建项目菜单的 Visual C++ 部分下创建一个新的“Windows Phone Runetime”组件。例如,您可以将项目命名为“Dll”。

创建项目后,您可以修改源代码,使其看起来像这样。

dll.cpp:

#include "Dll.h"

namespace ns {

    double Cpp_class::cppAdd(double a, double b)
    {
        return a + b;
    }
}

DLL.h:

#pragma once

namespace ns {
    public ref class Cpp_class sealed /* this is what makes your class visible to managed code */
    {
        public:
            static double cppAdd(double a, double b);
    };
}

编译它以验证您没有做错任何事情。完成后,创建一个新的 Windows Phone 应用程序项目(在新项目菜单中的 Visual C# 下。右键单击解决方案名称并选择“添加”>“添加现有项目”,选择您的 Dll 项目。完成此操作后,右键单击 Windows Phone 应用程序项目,选择“添加引用”,在“解决方案”选项卡下,您将看到您的 Dll 项目。

如果您正确执行了所有这些操作,您现在可以通过“使用”它在 Windows Phone 应用程序的 C# 部分中使用您的本机代码:

using Dll;

[...]
ns.Cpp_class.Add(1,3);

请记住,如果您不添加引用,您将无法使用该组件。

我真的希望这会有所帮助!

于 2013-10-11T08:42:55.010 回答
0

Windows 7 Phone 不支持平台调用和 C++/CLI。

但是,您可以在 Windows 8 Phone 上使用它。当然,在 Windows 8 上,您可能应该只用 C++ 编写整个应用程序——更好的电池寿命和性能。

http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj681687(v=vs.105).aspx

于 2013-04-18T05:36:49.390 回答