我使用的是Delphi 10.3.2企业版。
我使用了 Delphi 中的 Importer WSDL,但出现错误:
[dcc32 错误] ConsultaRUCDNI.pas(190): E2029 ';', ')' 或 '=' 预期但 ' <' found
WSDL 为:http://181.176.170.150:555//ConsultaRUCDNI.svc?wsdl
感谢大家的帮助
声明
procedure Set_foto(Index : Integer; const ATArray<System.Byte>: TArray<System.Byte>);
是错误的。正确的是:
procedure Set_foto(Index : Integer; const ATArray: TArray<System.Byte>);
顺便说一句,
TArray<System.Byte>
是TBytes
,所以你也可以这样写:
procedure Set_foto(Index : Integer; const ATArray: TBytes);