Environment.NewLine プロパティ

定義

この環境で定義されている改行文字列を取得します。

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

プロパティ値

String

\r\n Unix 以外のプラットフォームの場合、または \n Unix プラットフォームの場合。

次の使用例は、改行で区切られた 2 つの行を表示します。

// Sample for the Environment::NewLine property
using namespace System;

int main()
{
   Console::WriteLine();
   Console::WriteLine("NewLine: {0}  first line {0}  second line", Environment::NewLine);
}

/*
This example produces the following results:

NewLine:
first line
second line
*/
// Sample for the Environment.NewLine property
using System;

class Sample
{
    public static void Main()
    {
        Console.WriteLine();
        Console.WriteLine($"NewLine: {Environment.NewLine}  first line{Environment.NewLine}  second line");
    }
}

/*
This example produces the following results:

NewLine:
  first line
  second line
*/
// Sample for the Environment.NewLine property
open System

printfn $"\nNewLine: {Environment.NewLine}  first line{Environment.NewLine}  second line"

// This example produces the following results:
//     NewLine:
//       first line
//       second line
' Sample for the Environment.NewLine property
Class Sample
   Public Shared Sub Main()
      Console.WriteLine()
      Console.WriteLine($"NewLine:{Environment.NewLine}  first line{Environment.NewLine}  second line")
   End Sub
End Class

'This example produces the following results:
'
'NewLine:
'  first line
'  second line
'

注釈

プロパティ値は、現在のNewLineプラットフォームと.NET Frameworkの実装専用にカスタマイズされた定数です。 プロパティ値のエスケープ文字の詳細については、「 文字エスケープ」を参照してください。

提供される NewLine 機能は、多くの場合、改行、改行、改行、キャリッジ リターン、CRLF、および行の終了という用語によって意味されます。

NewLineは、Microsoft C# および C/C++ vbCrLf や Microsoft Visual Basic のエスケープ文字 '\r' や '\n' などの言語固有の改行のサポートと組み合わせて使用できます。

NewLineは、and StringBuilder.AppendLine メソッドによって処理されたテキストに自動的にConsole.WriteLine追加されます。

適用対象