Hi I'm currently working on a project that involves a carwash simulation. At the moment I'm stuck on sending a car object from the car class I created to another program. I am using udp for the sending of data for this project. I've googled how to do this with no luck so I figured I would ask here. I already know how to send a string message using udp but not sure how I would send this object.
The car class is just something the source uses to randomly generate a car. The things it is comprised of is simply a make, mode, and color which are stored in arrays to be randomly picked. What I need to do is get the source, that generates cars, to send the car object (using udp) that was generated to the attendant so it can be washed. Any help would would be appreciated here.