How to convert string that have \\r\\n to lines?
\\r\\n
For example, take this string:
string source = \"hello \\r\\n this is a test \\r\\n tested\
Try
string[] items = source.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);