Page 27 - E-Modul Pemrograman Dasar Kelas X RPL_Neat
P. 27

Contoh membuat method:


                 public int CariMax(int parameter1, int parameter2)

                        {

                               /* deklarasi variabel lokal /

                               int hasil;

                               if (parameter1 > parameter2)
                               hasil parameter1;

                               else

                               hasil = parameter2;

                               return hasil;

                        }

            b.  Memanggil Method


                       Untuk memanggil method dengan cara menuliskan nama method-nya. Contohnya
               digambarkan sebagai berikut.


                 using System;
                 using System.Collections.Generic;

                 using System.Linq;

                 using System.Text;



                 namespace ConsoleApplication1
                 {

                        class ContohMethod

                        {

                               public int CariMax(int parameter1, int parameter2)

                               {
                                       /* deklarasi variabel lokal */

                                       int hasil;

                                       if (parameter1 > parameter2)

                                       hasil parameter1;


                                                             17
   22   23   24   25   26   27   28   29   30   31   32