Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# string list

// This will create a new list called 'nameOfList':
var nameOfList = new List<string> 
{
  "value1",
  "value2",
  "value3"
};
 
PREVIOUS NEXT
Tagged: #string #list
ADD COMMENT
Topic
Name
1+5 =