标题:c#调用c++dll问题
取消只看楼主
deanlover
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-11-5
结帖率:0
已结贴  问题点数:20 回复次数:0 
c#调用c++dll问题
c++源码(vs2008)
namespace DLLdemo {

    public ref class Class1
    {
        // TODO: 在此处添加此类的方法。
    public:
        int Max(int a,int b)
        {
            if(a<b)
            {return b;}
            else{return a;}
        }
    };
}

c#调用代码:
namespace 调用c__dll
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        [DllImport("DLLdemo.dll",EntryPoint="Max")]
        public extern  static int Max(int a, int b);
        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show(Max(5, 3).ToString());
        }
    }
}


报错 :无法在 DLL“DLLdemo.dll”中找到名为“Max”的入口点

求人来指点迷津
搜索更多相关主题的帖子: public return 
2013-08-29 08:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-419785-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.048889 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved