Activity «Remove from list» can be found in section «Collections.List».
Activity removes the element from the list. There are 2 options (variants) of deletion: -by index; -by pointing to the specific element.
Attention! Index of the list elements starts with 0.
Additionaly, the deletion of element by index will lead to exception if the element with such index doesn't exist. Yet the deletion of specified object won't trigger exception if it doesn't exist.
Нажмите на изображение, чтобы увеличить его.
Property; Class; Type; Options; Description
List; In; Collections.IList; *; The list in which to delete.
Element; In; Object; By item; An item to remove from the list.
Index; In; Int32; By index; The index of the item to remove from the list.
Option; Description
By item; Deletes the specified element of the list.
By index; Deletes the element by index in the list (will trigger exception if the element with such index doesn't exist in the list)