Show Code
using System; public class exercise105 { public static void Double(ref int n) { n = n + n; } public static void Main() { int x = 2; Double(ref x); Console.WriteLine(x); } }