I've tried writing this kind of menu in c#:
Put a vehicle in the garage ----------------------------> 1
Display Licenses of cars in garage ---------------------> 2
Change a vehicle status --------------------------------> 3
Fill tires to maximum ----------------------------------> 4
Refuel a vehicle ---------------------------------------> 5
Recharge a vehicle -------------------------------------> 6
Show data of a vehicle ---------------------------------> 7
Exit ---------------------------------------------------> 0
The only problem I have, is that I am getting all sorts of values, which are not permanent like here in this menu and so this the result of the print I get in practice:
Put a vehicle in the garage ---------------------------> 1
Display Licenses of cars in garage ----------------------------> 2
Change a vehicle status ---------------------------> 3
Fill tires to maximum ---------------------------> 4
Refuel a vehicle---------------------------> 5
Recharge a vehicle ----------------------------> 6
Show data of a vehicle ---------------------------> 7
Exit ---------------------------> 0
and well, I want it all aligned pretty like at the top of my example. Do anyone have suggestion how so I do it?