2
function Converter(P: TByteDynArray): string;
begin
SetLength(Result, Length(P));
System.Move(P[0], Result[1], Length(P));
end;
Try to do so:
Source: http://www.devmedia.com.br/forum/converter-tbytedynarray-para-string/351139
2
2
function Converter(P: TByteDynArray): string;
begin
SetLength(Result, Length(P));
System.Move(P[0], Result[1], Length(P));
end;
Try to do so:
Source: http://www.devmedia.com.br/forum/converter-tbytedynarray-para-string/351139
Browser other questions tagged array delphi
You are not signed in. Login or sign up in order to post.
Lima, managed to solve?
– Jefferson Rudolf