I have a method to convert a base64 file that returns a TByteDynArray, and I wanted to convert this TByteDynArray to String.
I've tried it in some ways and it's not working.
Error:
function Converter(P: TByteDynArray): string;
begin
SetLength(Result, Length(P));
System.Move(P[0], Result[1], Length(P));
end;
Try to do this:
Source: link