using System; public static class Program { public static void Main() { int theValue = TheMethod(); } public static int TheMethod() { return 5; } }