当前位置:  开发笔记 > 编程语言 > 正文

如何从C#ASP.NET网页调用非托管C/C++代码

如何解决《如何从C#ASP.NET网页调用非托管C/C++代码》经验,为你挑选了2个好方法。

我有一个使用C#的ASP.NET网站,我想从非托管的C/C++ DLL调用函数.我该怎么做?



1> Vinay..:

    创建一个非托管DLL:

    extern "C" __declspec(dllexport) __cdecl int sum(int a,int b); ---->
    

    创建一个名称空间/类来DllImport上面的DLL

    using System.Runtime.InteropServices;
    namespace ImportDLL
    {
    public class importdll
    {
    public importdll()
    {
    }
    
    DllImport("mysum.dll",
              EntryPoint="sum",
              ExactSpelling=false,
              CallingConvention = CallingConvention.Cdecl)]
    public extern int myfun(int a, int b);
    }
    }
    

    在后面创建一个aspx代码

    using ImportDLL;
    namespace TEST
    {
     public int my_result;
     protected importdll imp = new importdll();
     my_result = imp.myfun(1,1);
    }
    



2> J.W...:

查看P/Invoke.

使用P/Invoke在C#中调用Win32 DLL

如果它是一个COM DLL,那么你可以使用COM Interop

推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有