I'm sorry if this has been answered before but I couldn't find the answer which fit my needs
I have a richTextBox in c# and I want to get a continuous string of text of the contents
The problem is .Text will get something like:
First line \n Second Line \n Third Line
and what I need is:
First line Second Line Third Line
I don't want to directly parse the \n as it might be relevant to the text I'm retrieving but I don't want it added based on the lines of the richTextBox
Any ideas? Any help is gratefully appreciated.