EN
C# / .NET - modify items in List
0 points
In this article, we would like to show you how to modify items in List in C#.
Quick solution:
xxxxxxxxxx
1
List<int> myList = new List<int> { 1, 2, 3 };
2
3
myList[0] = 4;
4
myList[1] = 5;
5
myList[2] = 6;
In this example, we modify items with the specified indexes using array notation.
xxxxxxxxxx
1
using System;
2
using System.Collections.Generic;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
List<int> myList = new List<int> { 1, 2, 3 };
9
10
myList[0] = 4;
11
myList[1] = 5;
12
myList[2] = 6;
13
14
foreach (int item in myList)
15
Console.WriteLine(item);
16
}
17
}
Output:
xxxxxxxxxx
1
4
2
5
3
6