Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# add item to a lsit

// Create a list  
List<string> AuthorList = new List<string>();  
  
// Add items using Add method
AuthorList.Add("Mahesh Chand"); 
 
PREVIOUS NEXT
Tagged: #add #item #lsit
ADD COMMENT
Topic
Name
2+7 =