Page 33 - E-Modul Pemrograman Dasar Kelas X RPL
P. 33
Contoh:
using System;
namespace ConsoleApplication1
{
class Metodeku
{
public void tukar (ref Int x, ref int y)
{
int sementara x;
x = y;
y = sementara;
}
}
class Program
{
static void Main(string[] args)
{
Metodeku met = new Metodeku();
int x = 1000;
int y = 50;
met.tukar (ref x, ref y);
Console.WriteLine(x);
//Maka yang tampil adalah 50
Console.ReadLine();
}
}
}
23