Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to insert into a list c#

var words = new List<string>();

// Warning: insterting into a List can be very slow
// Insert a string at index 3
names.Insert(3, "Hello!");  
 
PREVIOUS NEXT
Tagged: #insert #list
ADD COMMENT
Topic
Name
1+3 =