writer class : NewLine getter
Description
Gets a line terminator string that are used in the WriteLine method.
Syntax
writerInstance.NewLine
Arguments
None.
Return value
Class | Description |
string | A line terminator string that are used in the WriteLine method. |
Sample code
1: | writer w = new writer("c:\somewhere...\sample.txt"); |
2: | string newline = w.NewLine; |
Notes
It's a wrapper of the System.IO.StreamWriter.NewLine property.
The default line terminator string is a carriage return followed by a line feed ("\r\n").
Only "\n" or "\r\n" should be used as line terminator strings.