please can you solve this program for me please!!!!!!!!!!!!!!
Design a class called car with data members: model,company and price.include relevant constructors and methods to initialize and print the above data members.create another class called car collection to maintain a list of car objects using an array list.include an indexer to get array like access to car collection object.
1
Expert's answer
2011-10-20T11:39:43-0400
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace CarCollection { public class Car { & private string model; & private string company; & private double price;
Comments