How can I replace Line Breaks within a string in C#?
Use the .Replace() method
Line.Replace("\n", "whatever you want to replace with");