E
enetyou
Unregistered / Unconfirmed
GUEST, unregistred user!
大侠们:我用D7写了一个dll,参数是一个字符串,返回值是一个整数,但在C#里面调用时需要参数为Pchar,不能用字符串作参数,大家说怎么办?例如下面的这个函数的dll:
function ceshi(s:String):integer;stdcall;
begin
if s='abcd' then
result 1
else
result 0;
end;
请问该怎么修改才能在C#中能正确被调用执行呢?
function ceshi(s:String):integer;stdcall;
begin
if s='abcd' then
result 1
else
result 0;
end;
请问该怎么修改才能在C#中能正确被调用执行呢?