using System; public class Test { public static void Main() { int a = 2; int b = 1; Swap(ref a, ref b); Console.WriteLine("{0} < {1}", a, b); } }