TextWriter.NewLine Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the line terminator string used by the current TextWriter.
Assembly: mscorlib (in mscorlib.dll)
The default line terminator string is a carriage return followed by a line feed ("\r\n").
The line terminator string is written to the text stream whenever one of the WriteLine methods is called. In order for text written by the TextWriter to be readable by a TextReader, only "\n" or "\r\n" should be used as terminator strings. If NewLine is set to Nothing, the default newline character is used instead.