Hi, I have an IEnumerable<String>
from the Save Attachments activity, how do I convert this to a List<String>
? Thanks
1 Like
Hello,
Have you tried results.ToList()
or .results.Cast(Of String)().ToList()
?
7 Likes