I am getting a string from database field named \'Description\' and it has line breaks. It looks like this:
Header of Items
Description goes here.This the
Have you tried using regular expressions? They are pretty good in handling these type of tasks
result = Regex.Replace(result, @"\r\n?|\n", " ");