// Swap put
            public CarStruct Swap(CarStruct replacement)
            {
                var temp = this;

                this = replacement;
                return(temp);
            }
 // Constructor with another car struct
 public CarStruct(CarStruct otherCar)
 {
     this = otherCar;
 }