using System;
public class Program //swap by refefence
{
public static void Main(string[] args)
int a = 5;
int b = 20;
//Console.WriteLine("{0}, {1}", a, b);
Swap(ref a, ref b);
}
public static void Swap(ref int a, ref int b)
Console.WriteLine("{0},{1}", a, b);
int temp;
temp = a;
a = b;
b = temp;