IndentedTextWriter.Write メソッド

定義

指定した文字列をテキスト ストリームに書き込みます。

オーバーロード

Write(String, Object, Object)

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

Write(Char[], Int32, Int32)

文字の部分配列をテキスト ストリームに書き込みます。

Write(String, Object[])

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

Write(String, Object)

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

Write(String)

指定した文字列をテキスト ストリームに書き込みます。

Write(Single)

Single 値のテキスト形式をテキスト ストリームに書き込みます。

Write(Boolean)

Boolean 値のテキスト形式をテキスト ストリームに書き込みます。

Write(Int64)

8 バイト整数のテキスト形式をテキスト ストリームに書き込みます。

Write(Int32)

整数のテキスト形式をテキスト ストリームに書き込みます。

Write(Double)

Double 値のテキスト形式をテキスト ストリームに書き込みます。

Write(Char[])

文字配列をテキスト ストリームに書き込みます。

Write(Char)

文字をテキスト ストリームに書き込みます。

Write(Object)

オブジェクトのテキスト形式をテキスト ストリームに書き込みます。

Write(String, Object, Object)

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

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

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

パラメーター

format
String

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

arg0
Object

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

arg1
Object

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

適用対象

Write(Char[], Int32, Int32)

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

文字の部分配列をテキスト ストリームに書き込みます。

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

パラメーター

buffer
Char[]

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

index
Int32

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

count
Int32

書き込む文字数。

適用対象

Write(String, Object[])

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

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

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

パラメーター

format
String

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

arg
Object[]

出力する引数配列。

適用対象

Write(String, Object)

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

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

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

パラメーター

format
String

書式設定文字列。

arg0
Object

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

適用対象

Write(String)

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

指定した文字列をテキスト ストリームに書き込みます。

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

パラメーター

s
String

書き込む文字列。

適用対象

Write(Single)

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

Single 値のテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Single

書き込む single

適用対象

Write(Boolean)

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

Boolean 値のテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Boolean

書き込む Boolean 値。

適用対象

Write(Int64)

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

8 バイト整数のテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Int64

書き込む 8 バイト整数。

適用対象

Write(Int32)

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

整数のテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Int32

書き込む整数。

適用対象

Write(Double)

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

Double 値のテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Double

書き込む double

適用対象

Write(Char[])

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

文字配列をテキスト ストリームに書き込みます。

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

パラメーター

buffer
Char[]

書き込む文字配列。

適用対象

Write(Char)

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

文字をテキスト ストリームに書き込みます。

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

パラメーター

value
Char

書き込む文字。

適用対象

Write(Object)

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

オブジェクトのテキスト形式をテキスト ストリームに書き込みます。

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

パラメーター

value
Object

書き込むオブジェクト。

適用対象