IndentedTextWriter.WriteLine メソッド

定義

指定した文字列をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

オーバーロード

WriteLine(String, Object, Object)

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

WriteLine(Char[], Int32, Int32)

文字の部分配列をテキスト ストリームに書き込み、続けて行終端記号書き込みます。

WriteLine(String, Object[])

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

WriteLine(String, Object)

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

WriteLine(String)

指定した文字列をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Single)

Single 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Object)

オブジェクトのテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(UInt32)

UInt32 のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Int32)

整数のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Double)

Double 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Char[])

文字配列をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Char)

文字をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(Boolean)

Boolean 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine()

行終端記号を書き込みます。

WriteLine(Int64)

8 バイト整数のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

WriteLine(String, Object, Object)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::String ^ format, System::Object ^ arg0, System::Object ^ arg1);
public override void WriteLine (string format, object? arg0, object? arg1);
public override void WriteLine (string format, object arg0, object arg1);
override this.WriteLine : string * obj * obj -> unit
Public Overrides Sub WriteLine (format As String, arg0 As Object, arg1 As Object)

パラメーター

format
String

使用する書式指定文字列。

arg0
Object

書式指定文字列に書き込む最初のオブジェクト。

arg1
Object

書式指定文字列に書き込む 2 番目のオブジェクト。

適用対象

WriteLine(Char[], Int32, Int32)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

文字の部分配列をテキスト ストリームに書き込み、続けて行終端記号書き込みます。

public:
 override void WriteLine(cli::array <char> ^ buffer, int index, int count);
public override void WriteLine (char[] buffer, int index, int count);
override this.WriteLine : char[] * int * int -> unit
Public Overrides Sub WriteLine (buffer As Char(), index As Integer, count As Integer)

パラメーター

buffer
Char[]

データの書き込み元の文字配列。

index
Int32

バッファー内の開始インデックス。

count
Int32

書き込む文字数。

適用対象

WriteLine(String, Object[])

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::String ^ format, ... cli::array <System::Object ^> ^ arg);
public override void WriteLine (string format, params object?[] arg);
public override void WriteLine (string format, params object[] arg);
override this.WriteLine : string * obj[] -> unit
Public Overrides Sub WriteLine (format As String, ParamArray arg As Object())

パラメーター

format
String

使用する書式指定文字列。

arg
Object[]

出力する引数配列。

適用対象

WriteLine(String, Object)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

指定されているセマンティクスを使用して、書式設定された文字列を書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::String ^ format, System::Object ^ arg0);
public override void WriteLine (string format, object? arg0);
public override void WriteLine (string format, object arg0);
override this.WriteLine : string * obj -> unit
Public Overrides Sub WriteLine (format As String, arg0 As Object)

パラメーター

format
String

書式設定文字列。

arg0
Object

書式指定文字列に書き込むオブジェクト。

適用対象

WriteLine(String)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

指定した文字列をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::String ^ s);
public override void WriteLine (string? s);
public override void WriteLine (string s);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (s As String)

パラメーター

s
String

書き込む文字列。

適用対象

WriteLine(Single)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

Single 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(float value);
public override void WriteLine (float value);
override this.WriteLine : single -> unit
Public Overrides Sub WriteLine (value As Single)

パラメーター

value
Single

書き込む single

適用対象

WriteLine(Object)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

オブジェクトのテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::Object ^ value);
public override void WriteLine (object? value);
public override void WriteLine (object value);
override this.WriteLine : obj -> unit
Public Overrides Sub WriteLine (value As Object)

パラメーター

value
Object

書き込むオブジェクト。

適用対象

WriteLine(UInt32)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

重要

この API は CLS 準拠ではありません。

UInt32 のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(System::UInt32 value);
[System.CLSCompliant(false)]
public override void WriteLine (uint value);
[<System.CLSCompliant(false)>]
override this.WriteLine : uint32 -> unit
Public Overrides Sub WriteLine (value As UInteger)

パラメーター

value
UInt32

出力する UInt32。

属性

適用対象

WriteLine(Int32)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

整数のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(int value);
public override void WriteLine (int value);
override this.WriteLine : int -> unit
Public Overrides Sub WriteLine (value As Integer)

パラメーター

value
Int32

書き込む整数。

適用対象

WriteLine(Double)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

Double 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(double value);
public override void WriteLine (double value);
override this.WriteLine : double -> unit
Public Overrides Sub WriteLine (value As Double)

パラメーター

value
Double

書き込む double

適用対象

WriteLine(Char[])

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

文字配列をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(cli::array <char> ^ buffer);
public override void WriteLine (char[]? buffer);
public override void WriteLine (char[] buffer);
override this.WriteLine : char[] -> unit
Public Overrides Sub WriteLine (buffer As Char())

パラメーター

buffer
Char[]

書き込む文字配列。

適用対象

WriteLine(Char)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

文字をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(char value);
public override void WriteLine (char value);
override this.WriteLine : char -> unit
Public Overrides Sub WriteLine (value As Char)

パラメーター

value
Char

書き込む文字。

適用対象

WriteLine(Boolean)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

Boolean 値のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(bool value);
public override void WriteLine (bool value);
override this.WriteLine : bool -> unit
Public Overrides Sub WriteLine (value As Boolean)

パラメーター

value
Boolean

書き込む Boolean。

適用対象

WriteLine()

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

行終端記号を書き込みます。

public:
 override void WriteLine();
public override void WriteLine ();
override this.WriteLine : unit -> unit
Public Overrides Sub WriteLine ()

適用対象

WriteLine(Int64)

ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs
ソース:
IndentedTextWriter.cs

8 バイト整数のテキスト形式をテキスト ストリームに書き込み、続けて行終端記号を書き込みます。

public:
 override void WriteLine(long value);
public override void WriteLine (long value);
override this.WriteLine : int64 -> unit
Public Overrides Sub WriteLine (value As Long)

パラメーター

value
Int64

書き込む 8 バイト整数。

適用対象