DELPHI接口:function writecard(s:string):integer;stdcall;
C#接口声明:
[DllImport(LfV15Dll,CharSet=CharSet.Ansi,CallingConvention =CallingConvention.StdCall)]
public static extern int writecard( string cardInfo);
在调用接口时,一直显示“数据结构错误”。
请教各位大神:
DELPHI string为内置数据结构,是否跨平台无法调用?应如何修改?