Convert IEnum to array

@VanjaV,

Instead of using for each, use this LINQ in assign activity for this.

attachmentNamesArray = savedAttachments.Select(Function(filePath) Path.GetFileName(filePath)).ToArray()

1 Like