您好,登錄后才能下訂單哦!
在過程中發現兩種方法解決問題:一種是非托管C++創建的dll庫,需要用靜態方法調用。這種方法無法在C#的reference中直接引用,而是要用靜態調用的方法,其他博客已經介紹的很詳盡,唯一需要補充的是,C#文件需要先:
using System.Runtime.InteropServices;
之后才可以調用[DllImport]方法。
另一種方法是直接使用CLR,生成托管C++dll庫。
創建流程
例程如下
C++ dll:
// CPPlibdemo.h #pragma once using namespace System; namespace CPPlibdemo { public ref class Class1 { // TODO: Add your methods for this class here. public: String ^getgreating(){ return "hello world"; } }; }
C#語言:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CPPlibdemo; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { Class1 clrdemo = new Class1(); Console.Write(clrdemo.getgreating()); Console.ReadLine(); } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。