How important is it to use \n instead of using another print function

144 Views Asked by At

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.

2

There are 2 best solutions below

1
On BEST ANSWER

The decision to split this into one or more lines of code is negligible compared to the time it actually takes to output anything to console. If you need performance, output less.

0
On

If it's because of having to manage all the lines in one string, try using this method that I put together quick. It takes all the lines from a string array and formats it into what you want. Not sure how performance-wise effective it is, but it's definitely gonna help you with reading the lines better.

protected void Page_Load(object sender, EventArgs e)
{
    string[] lines = { "This is line 1", "This is line 2", "This is line 3", "This is line 4" };

    Console.WriteLine(FormatLines(lines));
}

public string FormatLines(string[] lines)
{
    string putTogetherQuery = "";

    for (int i = 0; i < lines.Length; i++)
        putTogetherQuery += "{" + i + "}\n ";

    return String.Format(putTogetherQuery, lines);
}