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

Contoh program dengan method void adalah sebagai berikut.


                 using System;

                 using System.Collections.Generic;

                 using System.Linq;

                 using System.Text;


                        namespace ConsoleApplication1



                 {

                        public class ContohMethod

                        {
                               public void metodeVoid()

                               {

                                       Console.WriteLine("Ini contoh method void");

                                       Console.WriteLine("Tetapi menampilkan hasil");

                                       Console.ReadLine();
                               }

                        }



                        class Program

                        {
                               static void Main(string[] args)

                               {

                                       ContohMethod methvoid = new ContohMethod();

                                       methvoid.metodeVoid(); //Akan menampilkan
                               hasil dari

                 metode void
                               }

                        }

                 }



                                                             19
   24   25   26   27   28   29   30   31   32   33   34