In C#, we have Console.WriteLine, and when programming a Linear Program, where optimization and overhead is important, I want to know, how necessary is it to use "\n" in the same Console.WriteLine instead of calling this again and again if I want to print lets say 10 lines:
Console.WriteLine("line1\n line2\n line3\n line4\n...");
as you can see this statement can be very long, and it's not a good programming habit.