0

私は単に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);
    }
   }
}
4

1 に答える 1

2

ネイティブ関数は ANSI 文字で動作します。CharSet.Unicodeインポート定義から削除するだけです。

于 2012-07-04T07:08:36.937 に答える