DLL中的导出接口中用string类型会存在内存泄漏问题吗?如:
ITest = interface
    procedure Send(Value: string); stdcall;
  end;在exe中调用这个接口,会不会引起内存泄漏?