私は単にC#からC dllにバッファーを渡そうとしており、C funcにバッファーを埋めさせてから、C#コードでバッファーを使って何かを実行しています。しかし、私はゴミをバッファに戻しています。これがCです:
extern "C" __declspec( dllexport )
int cFunction(char *plotInfo, int bufferSize)
{
strcpy(plotInfo, "text");
return(0);
}
c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("mcDll.dll",
CallingConvention = CallingConvention.Cdecl, CharSet=CharSet.Unicode)]
public static extern int cFunction( StringBuilder theString, int bufferSize);
static void Main(string[] args)
{
StringBuilder s = new StringBuilder(55);
int result = cFunction( s, 55);
Console.WriteLine(s);
}
}
}