//copy constructor
 public Application( Application other )
     : this(other.carList,other.busList,other.truckList)
 {
 }
 //main method
 public static void Main(string[] args)
 {
     Application application = new Application();    //creating new Application object
     application.Run();                              //calling its run method
 }