vote up 2 vote down star

What is the difference between two if any (with respect to .net)?

Thanks

flag

55% accept rate

7 Answers

vote up 20 vote down check

Depends on the platform. On Windows it is actually "\r\n".

From MSDN:

A string containing "\r\n" for non-Unix platforms, or a string containing "\n" for Unix platforms.

link|flag
vote up 9 vote down

As others have mentioned, Environment.NewLine returns a platform-specific string for beginning a new line, which should be:

  • "\r\n" (\u000D\u000A) for Windows
  • "\n" (\u000A) for Unix
  • "\r" (\u000D) for Mac (if such implementation existed)

Note that when writing to the console, Environment.NewLine is not strictly necessary. The console stream will translate "\n" to the appropriate new-line sequence, if necessary.

link|flag
vote up 8 vote down

Environment.NewLine will return the newline character for the corresponding platform in which your code is running

you will find this very useful when you deploy your code in linux on the Mono framework

link|flag
vote up 3 vote down

From the docs ...

A string containing "\r\n" for non-Unix platforms, or a string containing "\n" for Unix platforms.

link|flag
+1 for the link – JeffH Jun 19 at 13:51
vote up 1 vote down

Environment.NewLine will give "\r\n" when run on Windows. If you are generating strings for Unix based environments, you don't want the "\r".

link|flag
vote up 1 vote down

You might get into trouble when you try to display multi-line message separated with "\r\n".

It is always a good practice to do things in a standard way, and use Environment.NewLine

link|flag
vote up 0 vote down

Environment.newLine gives "\r\n" for Windows, "\n" for Unix

http://dotnetperls.com/newline

link|flag

Your Answer

Get an OpenID
or

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