using System; public static class Program { public static void Main() { TheMethod(2); } public static void TheMethod(int aParam) { int xTheValue; xTheValue = aParam; } }