Remove element from Collection by index

I have a System.Collections.Generic.ICollection<System.String> variable and I want to remove the first element from this Collection. How can I do this?

I’ve tried the “Remove from collection” activity but in the properties there is only an option for “Item” but it asks for a string (not int). I don’t want to remove by value I want to remove by index.

1 Like

in item use the variable_name(0) to indicate the first element of the collection

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.