11 lines
153 B
C#
11 lines
153 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
List<int> list = new List<int>();
|
|
|
|
list.Add(1);
|
|
list.Add(3);
|
|
|
|
list[0] = 2;
|
|
|
|
Console.WriteLine(list[0]);
|