using System; class Program { public static void Main() { int xValue = 0; xValue = DoEcho(5); } public static int DoEcho(int aValue) { return aValue; } }