take with remove element in c# code example
Example: how to remove from list from index c#
List.Remove("ElementTypeAndValue");
// Or remove from index using:
List.Remove(List[index]);
List.Remove("ElementTypeAndValue");
// Or remove from index using:
List.Remove(List[index]);