I have a textfile with lines that end with \r\n. When splitting 1 line with eg. Regex:
string[] splittedFile = Regex.Split(fileString, "\n");
Original input:
:020000040008F2\r\n
:04200000004875F02F\r\n
it will output:
:020000040008F2\r
:04200000004875F02F\r
However, I want it to be:
:020000040008F2\r\n
:04200000004875F02F\r\n
How can this be done?
Thanks!