C#调用C++编写的DLL函数, 以及各种类型的参数传递 z

C#调用C++编写的DLL函数, 以及各种类型的参数传递 z

1. 如果函数只有传入参数,比如:

C/C++ Code  Copy Code To Clipboard
  1. //C++中的输出函数
  2. int__declspec(dllexport) test(constint N)
  3. {
  4. return N+10;
  5. }

对应的C#代码为:

C# Code  Copy Code To Clipboard
  1. [DllImport("test.dll", EntryPoint = "#1")]
  2. publicstaticexternint test(int m);
  3.  
  4. privatevoid button1_Click(object sender, EventArgs e)
  5. {
  6. textBox1.Text= test(10).ToString();
  7. }

2. 如果函数有传出参数,比如:

C/C++ Code  Copy Code To Clipboard
  1. //C++
  2. void__declspec(dllexport) test(constint N, int& Z)
  3. {
  4. Z=N+10;
  5. }

对应的C#代码:

C# Code  Copy Code To Clipboard
  1. [DllImport("test.dll", EntryPoint = "#1")]
  2. publicstaticexterndouble test(int m, refint n);
  3.  
  4. privatevoid button1_Click(object sender, EventArgs e)
  5. {
  6. int N = 0;
  7. test1(10, ref N);
  8. textBox1.Text= N.ToString();
  9. }

3. 带传入数组:

C/C++ Code  Copy Code To Clipboard
  1. void__declspec(dllexport) test(constint N, constint n[], int& Z)
  2. {
  3. for (int i=0; i<N; i++)
  4. {
  5. Z+=n[i];
  6. }
  7. }

C#代码:

C# Code  Copy Code To Clipboard
  1. [DllImport("test.dll", EntryPoint = "#1")]
  2. publicstaticexterndouble test(int N, int[] n, refint Z);
  3.  
  4. privatevoid button1_Click(object sender, EventArgs e)
  5. {
  6. int N = 0;
  7. int[] n;
  8. n = newint[10];
  9. for (int i = 0; i < 10; i++)
  10. {
  11. n[i] = i;
  12. }
  13. test(n.Length, n, ref N);
  14. textBox1.Text= N.ToString();
  15. }

4. 带传出数组:

C++不能直接传出数组,只传出数组指针,

C/C++ Code  Copy Code To Clipboard
  1. void__declspec(dllexport) test(constint M, constint n[], int *N)
  2. {
  3. for (int i=0; i<M; i++)
  4. {
  5. N[i]=n[i]+10;
  6. }
  7. }

对应的C#代码:

C# Code  Copy Code To Clipboard
  1. [DllImport("test.dll", EntryPoint = "#1")]
  2. publicstaticexternvoid test(int N, int[] n, [MarshalAs(UnmanagedType.LPArray,SizeParamIndex=1)] int[] Z);
  3.  
  4. privatevoid button1_Click(object sender, EventArgs e)
  5. {
  6. int N = 1000;
  7. int[] n, Z;
  8. n = newint[N];Z = newint[N];
  9. for (int i = 0; i < N; i++)
  10. {
  11. n[i] = i;
  12. }
  13. test(n.Length, n, Z);
  14. for (int i=0; i<Z.Length; i++)
  15. {
  16. textBox1.AppendText(Z[i].ToString()+"n");
  17. }
  18. }

这里声明函数入口时,注意这句 [MarshalAs(UnmanagedType.LPArray,SizeParamIndex=1)] int[] Z

在C#中数组是直接使用的,而在C++中返回的是数组的指针,这句用来转化这两种不同的类型.

关于MarshalAs的参数用法以及数组的Marshaling,可以参见这篇转帖的文章: http://www.kycis.com/blog/read.php?21

转载自http://www.cnblogs.com/zeroone/p/3681370.html
CSharp 调用C++ DLL; 参数为指针类型导出函数 c# Csharp调用 c++参数为导入和导出指针两种 包含C++ DLL源码 如fun(cont char* A,char*B) A为输入参数,B为输出参数-C# CSharp call C++ DLL lib dll function param use export and import eg: fun(cont char* A,char*B) A IN,B OUT TestDll\Debug\TestCallDll.exe .......\.....\TestCallDll.vshost.exe .......\.....\TestCallDll.vshost.exe.manifest .......\.....\TestDll.dll .......\.....\TestDll.lib .......\TestCallDll\Form1.cs .......\...........\Form1.Designer.cs .......\...........\Form1.resx .......\...........\obj\Debug\TestCallDll.csproj.FileListAbsolute.txt .......\...........\...\.....\TestCallDll.csproj.GenerateResource.Cache .......\...........\...\.....\TestCallDll.exe .......\...........\...\.....\TestCallDll.Form1.resources .......\...........\...\.....\TestCallDll.pdb .......\...........\...\.....\TestCallDll.Properties.Resources.resources .......\...........\Program.cs .......\...........\...perties\AssemblyInfo.cs .......\...........\..........\Resources.Designer.cs .......\...........\..........\Resources.resx .......\...........\..........\Settings.Designer.cs .......\...........\..........\Settings.settings .......\...........\TestCallDll.csproj .......\....Dll\dllmain.cpp .......\.......\ReadMe.txt .......\.......\stdafx.cpp .......\.......\stdafx.h .......\.......\targetver.h .......\.......\TestDll.cpp .......\.......\TestDll.def .......\.......\TestDll.h .......\.......\TestDll.vcproj .......\.......\TestDll.vcproj.PC-201008261742.Administrator.user .......\TestDll.sln .......\TestDll.suo .......\....CallDll\obj\Debug\TempPE .......\...........\...\Debug .......\...........\obj .......\...........\Properties .......\Debug .......\TestCallDll .......\TestDll TestDll
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值