程序设计如何向控制台输出并换行?
c#中控制台输出内容并换行的方法是Console.WriteLine(“输出内容”),为了防止控制台输出内容后就关闭,后面可以再加一句Console.ReadKey()。