IndentedTextWriter.WriteLineNoTabs(String) Metodo

Definizione

Scrive la stringa specificata in una riga senza tabulazioni.

public:
 void WriteLineNoTabs(System::String ^ s);
public void WriteLineNoTabs(string s);
member this.WriteLineNoTabs : string -> unit
Public Sub WriteLineNoTabs (s As String)

Parametri

s
String

Stringa da scrivere.

Esempio

Nell'esempio di codice seguente viene illustrata la scrittura di una riga senza rientri di stringhe di tabulazione.

// Outputs a string using the WriteLineNoTabs method.
indentWriter.WriteLineNoTabs("This is a test phrase written with the IndentTextWriter.WriteLineNoTabs method.");
' Output a string using the WriteLineNoTabs method.
indentWriter.WriteLineNoTabs("This is a test phrase written with the IndentTextWriter.WriteLineNoTabs method.")

Si applica a