I have the following code snippet. I want to add two new lines after variable "automatedComment ". I tried the following way. But its taking only one line after the URL in automatedComment. Please let me know how can I add two lines after URL
string automatedComment = "<b>Note:</b>" + " Your comment will not be read." +
"For more details, " + "please refer the wiki <URL>";
string description = automatedComment + Environment.NewLine + "" +
"TEST MESSAGE" + Environment.NewLine + "" +
Environment.NewLine +
Environment.NewLine + "Logs path: " +
Environment.NewLine +
Environment.NewLine + Environment.NewLine + "<b>==== List of Similar " + " Test Projects With Same issue ====</b>" +
Environment.NewLine ;
description = description.Trim().Trim(Environment.NewLine.ToCharArray());
description = "<p>" + + description.Replace(Environment.NewLine, "</p><p>") + "</p>";
Kindly waiting for your inputs.
Thanks,
Santosh