Что выведет в консоль
Условие задачи
Что выведет в консоль
csharpvar source = new List<int>() {1, 4, 5, 7};
var collection = new Collection<int>(source);
var list = new List<int>(source);
source.Add(6);
source.Sort();
collection.Add(2);
list.Add(3);
Console.WriteLine($"c :{string.Join(",", collection)} l :{string.Join(",", list)}");