Get string with escape character
Hi.
I have a textbox where I set this text, for example:
This is the sample text\n
Then I assign the text to a string variable:
string var = textbox1.Text;
So, in var I have the string"This is the sample text\\n". I would like to parse the"\\n" to"\n"... How can I do that?
Thanks.

