Answers for "c# list string modify item"

C#
2

c# how to set string list

// This will create a new list called 'nameOfList':
var nameOfList = new List<string> 
{
  "value1",
  "value2",
  "value3"
};
Posted by: Guest on October-28-2020
0

how to edit a c# list

list[indexToEdit] = newItem;
Posted by: Guest on March-26-2020

C# Answers by Framework

Browse Popular Code Answers by Language