static void Main(string[] args) { Lists.Owner owner = new Lists.Owner(); Console.WriteLine("Я: {0} {1} {2}", owner.id, owner.name, owner.organization); Lists.Owner.Date time = new Lists.Owner.Date(); Console.WriteLine(time.date); Console.WriteLine(); Lists Words = new Lists(); Words.Add("Минск"); Words.Add("Гродно"); Words.Add("Витебск"); Words.Add("Могилев"); Console.WriteLine("Список:"); Words.Output(); Console.WriteLine("Удаление элемента: "); Words = Words >> 1; Words.Output(); Console.WriteLine("Добавление элемента в заданную позицию: "); Words = Words + 1; Words.Output(); Lists Words2 = new Lists(); Words2.Add("Минск"); Words2.Add("Гродно"); Words2.Add("Витебск"); Console.WriteLine("Проверка на равенство множеств: "); bool eq = Words != Words2; if (eq) { Console.WriteLine("Списки равны"); } else { Console.WriteLine("Списки не равны"); } StatisticOperation.CountOfElem(Words); StatisticOperation.Sum(Words); StatisticOperation.Max_Min(Words); string i = Words.WordMax(); Console.WriteLine("Самое длинное слово: " + i); Words.DelLast(); Console.WriteLine("Удаление последнего: "); Words.Output(); Console.ReadKey(); }
public static void CountOfElem(Lists Words) { Console.WriteLine("Количество элементов в списке:" + Words.Count()); }