No, usually they will not be the same.
When you add to the dynamic array, you are likely to enter attribute markers (@AM) for each new line, while with consecutive files they will remain as native new line characters.
If you use a UNIX system to run UniData, you can do CONVERT @AM TO CHAR(10) IN MYARRAY , and it should be equivalent.
If you use Windows to run UniData, you can do SWAP @AM WITH CHAR(13):CHAR(10) IN MYARRAY , and it should be equivalent.
Disclaimer: The above code has not been tested.
source share