Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets or sets the line terminator string used by the current TextWriter.
Namespace: System.IO
Assembly: System.IO (in System.IO.dll)
Syntax
'Declaration
Public Overridable Property NewLine As String
public virtual string NewLine { get; set; }
public:
virtual property String^ NewLine {
String^ get ();
void set (String^ value);
}
abstract NewLine : string with get, set
override NewLine : string with get, set
function get NewLine () : String
function set NewLine (value : String)
Property Value
Type: System. . :: . .String
The line terminator string for the current TextWriter.
Remarks
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 null Nothing nullptr unit a null reference (Nothing in Visual Basic) , the default newline character is used instead.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.