C#調用C++編寫的DLL函數, 以及各類類型的參數傳遞 (轉載)

C#調用C++編寫的DLL函數, 以及各類類型的參數傳遞  

1. 若是函數只有傳入參數,好比:php

C/C++ Code Copy Code To Clipboard
  1. //C++中的輸出函數
  2. int __declspec(dllexport) test(const int N)
  3. {
  4. return N+10;
  5. }

對應的C#代碼爲:數組

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

2. 若是函數有傳出參數,好比:app

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

對應的C#代碼:函數

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

3. 帶傳入數組:spa

C/C++ Code Copy Code To Clipboard
  1. void __declspec(dllexport) test(const int N, const int 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. public static extern double test(int N, int[] n, ref int Z);
  3.  
  4. private void button1_Click(object sender, EventArgs e)
  5. {
  6. int N = 0;
  7. int[] n;
  8. n = new int[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. 帶傳出數組:code

C++不能直接傳出數組,只傳出數組指針,blog

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

對應的C#代碼:ip

C# Code Copy Code To Clipboard
  1. [DllImport("test.dll", EntryPoint = "#1")]
  2. public static extern void test(int N, int[] n, [MarshalAs(UnmanagedType.LPArray,SizeParamIndex=1)] int[] Z);
  3.  
  4. private void button1_Click(object sender, EventArgs e)
  5. {
  6. int N = 1000;
  7. int[] n, Z;
  8. n = new int[N];Z = new int[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[] Zci

在C#中數組是直接使用的,而在C++中返回的是數組的指針,這句用來轉化這兩種不一樣的類型.

關於MarshalAs的參數用法以及數組的Marshaling,能夠參見這篇轉帖的文章: http://www.kycis.com/blog/read.php?21

5. 傳出字符數組:

C++定義:

C/C++ Code Copy Code To Clipboard
  1. void __declspec(dllexport) test(int i, double &a, double &b, char t[5])  

C#對應聲明:

C# Code Copy Code To Clipboard
  1. [DllImport("dll.dll", EntryPoint = "test")]  
  2. public static extern void test(int i, ref double a, ref double b, [Out, MarshalAs(UnmanagedType.LPArray)] char[] t);   
  3. 。。。  
  4.             char[] t = new char[5];  
  5.             test(i, ref a, ref b, t);  

字符數組的傳遞基本與4類似,只是mashalAs 時前面加上Out。

相關文章
相關標籤/搜索