Hi,
Your code doesn't compile because the version of Merge you are trying to call takes an array of PdfDocument object, but you are passing it an array of "Object" because ArrayList.ToArray returns an array of objects.
To return an array of PdfDocument, you have to use the generic class List<T>. It will be something like this:
Code: C#
Dim docList As New List(Of PdfDocument)()
Once you change that your code will compile.
Thanks!