4 つの出力パラメーターを返すこの関数を含む C ライブラリがあります。
void __declspec(dllexport) demofun(double a[], double b[], double* output1, double* output2, double res[], double* output3)
そして、関数を呼び出す C# ラッパーを作成しました。
namespace cwrapper
{
public sealed class CWRAPPER
{
private CWRAPPER() {}
public static void demofun(double[] a, double[] b, double output1,
double output2, double[] res, double output3)
{ // INPUTS: double[] a, double[] b
// OUTPUTS: double[] res, double output1, double output2
// Arrays a, b and res have the same length
// Debug.Assert(a.length == b.length)
int length = a.Length;
CWRAPPERNative.demofun(a, b, length, ref output1, ref output2,
res, ref output3);
}
}
[SuppressUnmanagedCodeSecurity]
internal sealed class CWRAPPERNative
{
private CWRAPPERNative() {}
[DllImport("my_cwrapper.dll", CallingConvention=CallingConvention.Cdecl,
ExactSpelling=true, SetLastError=false)]
internal static extern void demofun([In] double[] a, [In] double[] b,
int length, ref double output1, ref double output2,
[Out] double[] res, ref double output3);
}
}
CWRAPPERNative.demofun
メソッドを呼び出すと、すべて正常に動作します。ただし、CWRAPPER.demofun
メソッドを呼び出すと、 のみがdouble[] res
正しく渡されます。出力パラメータoutput1
、output2
およびoutput3
は、呼び出し後に変更されません。
// ...
// Initializing arrays A and B above here
double[] res = new double[A.Length];
double output1 = 0, output2 = 0, output3 = 0;
// Works partially: output1 to 3 unchanged
CWRAPPER.demofun(A, B, output1, output2, res, output3);
// Works correctly: all outputs are changed
CWRAPPERNative.demofun(A, B, A.Length, ref output1, ref output2, res, ref output3);
ポインター引数を間違ってマーシャリングしていると推測していますが、修正方法がわかりません。誰でも解決策を知っていますか?ありがとう!