I have a line break in the middle of a line. Notepad shows it as one line however. It is not a Carriage Return, just a line feed. When I attempt to read the line using StreamReader.ReadLine(), it reads up to the LF, then stops, when I ReadLine again, it is the continuation. I have tried replace \n and \r to not avail.
Its not availbale because:
http://msdn.microsoft.com/en-us/library/system.io.streamreader.readline.aspx
A line is defined as a sequence of characters followed by a line feed ("\n"), a carriage return ("\r") or a carriage return immediately followed by a line feed ("\r\n"). The string that is returned does not contain the terminating carriage return or line feed. The returned value is nullNothingnullptra null reference (Nothing in Visual Basic) if the end of the input stream is reached.
Is there any workaround because i cant change the lines in the input file?
Update: See Notepad Screenshot paste.pics/f4f62d4b7636ff0f771693690757896c the lines are broken because of the linefeed but it should be one line my line end is \r\n and not \n