{$r *.res} function out_char(str1:pchar;str2:pchar):pchar;stdcall; var temp:pchar; begin getmem(temp,length(str1)+length(str2)+1); strcopy(temp,str1); strcat(temp,str2); result := temp; end;
exports out_char;
begin end. ////////////////////////////////////////////////////////////// 在c#中调用方式: [dllimport("mydll.dll")] public static extern string out_char(string str1,string str2);