I have a csv file. It is not so big, the problem is this. The end of the line has these two characters at the end of every line cr lf. Unfortunately in only one single register there is a column with a LF character in the middle. When I try to import the document, this character generates a conflict.
The line looks like this in Notepad++
text1, text2,te(LF)
xt3, text4 (CR LF)
And I need this
text1, text2,text3, text4 (CR LF)
Now, mi question is, how can I delete this character in C# without affecting the end of the row?
Regards