using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication { class Program { private static string method1(string name, double salary) { salary = (int)Math.Ceiling(salary); return Console.WriteLine( name, "you get ", salary); ... } public static void Main() { Console.WriteLine(method1("boy",14)); } }