public CarCollection()
 {
     carName = new MyList <string>();
     carYear = new MyList <DateTime>();
 }
Beispiel #2
0
        private readonly MyList <DateTime> carYear; //Создание экземпляра класса MyList и закрвываем его типом DateTime

        public CarCollection()                      //Конструктор по умолчанию
        {
            //Инициализация полей класса
            carName = new MyList <string>();
            carYear = new MyList <DateTime>();
        }