As per subject...

link|improve this question

78% accept rate
2  
This is unrelated to C# as it would be applicable in almost all languages. – leppie Oct 21 '10 at 9:39
may be the op is a c# guy – Vinothbabu Oct 21 '10 at 9:40
2  
The OP has clearly never used a typewriter en.wikipedia.org/wiki/Typewriter – amelvin Oct 21 '10 at 9:42
OP should start marking answers as accepted :) – Dave Oct 27 '10 at 12:45
feedback

8 Answers

up vote 2 down vote accepted

\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

link|improve this answer
feedback

The Difference

There are a few characters which can indicate a new line. The usual ones are these two:

* '\n' or '0x0A' (10 in decimal) -> This character is called "Line Feed" (LF).
* '\r' or '0x0D' (13 in decimal) -> This one is called "Carriage return" (CR).

Different Operating Systems handle newlines in a different way. Here is a short list of the most common ones:

* DOS and Windows

They expect a newline to be the combination of two characters, namely '\r\n' (or 13 followed by 10).

* Unix (and hence Linux as well)

Unix uses a single '\n' to indicate a new line.

* Mac

Macs use a single '\r'.

Taken from Here

link|improve this answer
1  
Book marking for future reference - thanks – Preet Sangha Oct 21 '10 at 9:43
AFAIK, Macs haven't used \r since OSX -- they use \n now. And \r\n happens to be used by just about every app-layer internet protocol in existence that ever works in terms of lines. – cHao Dec 28 '11 at 16:15
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.

link|improve this answer
feedback

Use Environment.NewLine and don't care.

link|improve this answer
Unless he is reading files generated by other software. – Adrian Grigore Oct 21 '10 at 9:42
feedback

They are just \r\n and \n are variants.

\r\n is used in windows

\n is used in mac and linux

link|improve this answer
feedback

Basically comes down to Windows standard: \r\n and Unix based systems using: \n

http://en.wikipedia.org/wiki/Newline

link|improve this answer
feedback

It's about how operating system recognize line ends.

  • windows user \r\n
  • mac user \r
  • linux uses \n

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).

link|improve this answer
feedback

\n is the line break used by Unix(-like) systems, \r\n is used by windows. This has nothing to do with C#.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.