readonly:
private readonly List<int> MyList = new List<int>();
MyList = new List<int>(), , MyList, , MyList.Add(3).
, , foreach, :
foreach(List<int> lst in MyListOfLists)
{
lst = new List<int>();
lst.Add(3);
}
, , foreach, , :
foreach(int x in SomeEnumerable)
{
if(x != 0)
SomeEnumerable.Add(0);
}
, Add SomeEnumerable, , " . , .