IndentedTextWriter.Write Metodo

Definizione

Inserisce nel flusso di testo la stringa specificata.

Overload

Write(String, Object, Object)

Inserisce una stringa formattata utilizzando la semantica specificata.

Write(Char[], Int32, Int32)

Scrive una sottomatrice di caratteri nel flusso di testo.

Write(String, Object[])

Inserisce una stringa formattata utilizzando la semantica specificata.

Write(String, Object)

Inserisce una stringa formattata utilizzando la semantica specificata.

Write(String)

Inserisce nel flusso di testo la stringa specificata.

Write(Single)

Inserisce nel flusso di testo la rappresentazione testuale di un valore Single.

Write(Boolean)

Inserisce nel flusso di testo la rappresentazione testuale di un valore booleano.

Write(Int64)

Inserisce nel flusso di testo la rappresentazione testuale di un intero a 8 byte.

Write(Int32)

Inserisce nel flusso di testo la rappresentazione testuale di un intero.

Write(Double)

Inserisce nel flusso di testo la rappresentazione testuale di un valore Double.

Write(Char[])

Scrive una matrice di caratteri nel flusso di testo.

Write(Char)

Scrive un carattere nel flusso di testo.

Write(Object)

Inserisce nel flusso di testo la rappresentazione testuale di un oggetto.

Write(String, Object, Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce una stringa formattata utilizzando la semantica specificata.

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)

Parametri

format
String

Stringa di formattazione da utilizzare.

arg0
Object

Primo oggetto da inserire nella stringa formattata.

arg1
Object

Secondo oggetto da inserire nella stringa formattata.

Si applica a

Write(Char[], Int32, Int32)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Scrive una sottomatrice di caratteri nel flusso di testo.

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)

Parametri

buffer
Char[]

Matrice di caratteri da cui scrivere i dati.

index
Int32

Indice iniziale nel buffer.

count
Int32

Numero di caratteri da scrivere.

Si applica a

Write(String, Object[])

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce una stringa formattata utilizzando la semantica specificata.

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())

Parametri

format
String

Stringa di formattazione da utilizzare.

arg
Object[]

Matrice di argomenti che deve essere restituita.

Si applica a

Write(String, Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce una stringa formattata utilizzando la semantica specificata.

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)

Parametri

format
String

Stringa di formattazione.

arg0
Object

Oggetto da scrivere nella stringa formattata.

Si applica a

Write(String)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la stringa specificata.

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)

Parametri

s
String

Stringa da scrivere.

Si applica a

Write(Single)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un valore 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)

Parametri

value
Single

Valore single da scrivere.

Si applica a

Write(Boolean)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un valore booleano.

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

Parametri

value
Boolean

Valore booleano da inserire.

Si applica a

Write(Int64)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un intero a 8 byte.

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

Parametri

value
Int64

Intero a 8 byte da inserire.

Si applica a

Write(Int32)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un intero.

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

Parametri

value
Int32

Intero da inserire.

Si applica a

Write(Double)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un valore 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)

Parametri

value
Double

Valore double da scrivere.

Si applica a

Write(Char[])

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Scrive una matrice di caratteri nel flusso di testo.

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())

Parametri

buffer
Char[]

Matrice di caratteri da scrivere.

Si applica a

Write(Char)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Scrive un carattere nel flusso di testo.

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

Parametri

value
Char

Carattere da scrivere.

Si applica a

Write(Object)

Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs
Source:
IndentedTextWriter.cs

Inserisce nel flusso di testo la rappresentazione testuale di un oggetto.

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)

Parametri

value
Object

Oggetto da scrivere.

Si applica a