Environment.NewLine Vlastnost
Definice
Získá řetězec nového řádku definovaný pro toto prostředí.Gets the newline string defined for this environment.
public:
static property System::String ^ NewLine { System::String ^ get(); };
public static string NewLine { get; }
member this.NewLine : string
Public Shared ReadOnly Property NewLine As String
Hodnota vlastnosti
\r\n pro platformy jiné než UNIX nebo \n pro platformy UNIX.\r\n for non-Unix platforms, or \n for Unix platforms.
Příklady
Následující příklad zobrazí tři řádky oddělené newlines.The following example displays three lines separated by newlines.
// Sample for the Environment::NewLine property
using namespace System;
int main()
{
Console::WriteLine();
Console::WriteLine( "NewLine: {0} first line {0} second line {0} third line", Environment::NewLine );
}
/*
This example produces the following results:
NewLine:
first line
second line
third line
*/
// Sample for the Environment.NewLine property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine("NewLine: {0} first line{0} second line{0} third line",
Environment.NewLine);
}
}
/*
This example produces the following results:
NewLine:
first line
second line
third line
*/
' Sample for the Environment.NewLine property
Class Sample
Public Shared Sub Main()
Console.WriteLine()
Console.WriteLine("NewLine: {0} first line{0} second line{0} third line", _
Environment.NewLine)
End Sub
End Class
'
'This example produces the following results:
'
'NewLine:
' first line
' second line
' third line
'
Poznámky
Hodnota vlastnosti NewLine je konstanta přizpůsobená specificky pro aktuální platformu a implementaci .NET Framework.The property value of NewLine is a constant customized specifically for the current platform and implementation of the .NET Framework. Další informace o řídicích znacích v hodnotě vlastnosti naleznete v tématu Character Escape.For more information about the escape characters in the property value, see Character Escapes.
Funkce, které poskytuje NewLine , je často ta, která je určena pro nový řádek, posun řádku, zalomení řádku, návratovou hodnotu znaku CRLF a konec řádku.The functionality provided by NewLine is often what is meant by the terms newline, line feed, line break, carriage return, CRLF, and end of line.
NewLine dá se použít ve spojení s podporou nového řádku pro konkrétní jazyk, jako jsou řídicí znaky "\r" a "\n" v jazyce Microsoft C# a C/C++ nebo vbCrLf v microsoft Visual Basic.NewLine can be used in conjunction with language-specific newline support such as the escape characters '\r' and '\n' in Microsoft C# and C/C++, or vbCrLf in Microsoft Visual Basic.
NewLine je automaticky připojen k textu zpracovávanému Console.WriteLine StringBuilder.AppendLine metodami a.NewLine is automatically appended to text processed by the Console.WriteLine and StringBuilder.AppendLine methods.