As per subject...
feedback
|
|
\n is Unix, \r is Mac, \r\n is Windows. Sometimes it's giving trouble especially when running code cross platform. You can bypass this by using Environment.NewLine. Please refer to http://social.msdn.microsoft.com/forums/en-US/csharplanguage/thread/47af2197-26b4-4b9e-90e8-bfa9d5cd05b4 for more information. Happy reading | |||
|
feedback
|
There are a few characters which can indicate a new line. The usual ones are these two:
Different Operating Systems handle newlines in a different way. Here is a short list of the most common ones:
They expect a newline to be the combination of two characters, namely '\r\n' (or 13 followed by 10).
Unix uses a single '\n' to indicate a new line.
Macs use a single '\r'. Taken from Here | |||||||
feedback
|
|
"\n" is just a line feed (Unicode U+000A). This is typically the Unix line separator. "\r\n" is a carriage return (Unicode U+000D) followed by a line feed (Unicode U+000A). This is typically the Windows line separator. | |||
|
feedback
|
|
Use | |||
|
feedback
|
|
They are just
| |||
|
feedback
|
|
Basically comes down to Windows standard: \r\n and Unix based systems using: \n | |||
|
feedback
|
|
It's about how operating system recognize line ends.
Morale: if you are developing for windows, stick to \r\n. Or even better, use C# string functions to deal with strings which already consider line endings (WriteLine, and such). | |||
|
feedback
|
|
\n is the line break used by Unix(-like) systems, \r\n is used by windows. This has nothing to do with C#. | |||
|
feedback
|