C#呼叫易語言寫的Dll檔案
轉自:http://blog.csdn.net/glldc/article/details/7312400
本人是用易語言起步的,起初是為了興趣,後來由於易語言被殺軟誤殺嚴重,連空白程式都殺,後來轉到了學C#,隨著學習的深入,接觸越來越複雜的東西之後,發現有些功能沒有用易語言來寫方便,所以就想到用C#來呼叫易語言寫的DLL,就和一般的Dll呼叫一樣,沒什麼技術含量。
易語言中新建個Dll檔案
C#中和一般的DLL一樣呼叫
- <p>using System;
- using System.Collections.Generic;
-
using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Runtime.InteropServices;</p><p> </p><p>namespace e_dll
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
-
InitializeComponent();
- }
- [DllImport("msg.dll")]
- publicstaticexternvoid msgbox(string text,string title);
- privatevoid button1_Click(object sender, EventArgs e)
- {
- msgbox("成功呼叫易語言dll!", "測試");
- }
- }
- }
- </p>
結果如下: