//Метод в который передается аргумент по ссылке public void ChangeColor(ref Automobile automobile) { Console.WriteLine("Введите новый цвет автомобиля"); string temp = Console.ReadLine(); automobile._color = temp; }
static void Main(string[] args) { int arrSize = 5; Automobile[] array = new Automobile[arrSize]; for (int i = 0; i < array.Length; i++) { array[i] = new Automobile(); array[i].Initialization(); } for (int i = 0; i < array.Length; i++) { array[i].Print(); } Console.WriteLine("Общее количество автомобилей = " + Automobile._carCount + "\n" + "Общая стоимость всех автомобилей = " + Automobile._totalCarPrice + " тенге"); Console.ReadKey(); }