Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# remove item from list

list.Remove("Example String"); // Remove by value
list.RemoveAt(3); // Remove at index
list.RemoveRange(6, 3); // Remove range (removes 3 items starting at 6th position in this example)
 
PREVIOUS NEXT
Tagged: #remove #item #list
ADD COMMENT
Topic
Name
7+4 =