Example #1
0
        static void Main(string[] args)
        {
            // membuat objek taxi dari class Taxi
            Taxi taxi = new Taxi();

            // set nilai properties
            taxi.DriverName   = "Verry";
            taxi.OnDuty       = true;
            taxi.NumPassenger = 10;

            // pemanggilan methods
            taxi.TaxiInfo();
            taxi.PickUpPassenger();
            taxi.DropOffPassenger();

            Console.ReadKey();
        }