IndentedTextWriter.WriteLineNoTabs(String) メソッド

定義

指定した文字列をタブのない行に書き込みます。

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

パラメーター

s
String

書き込む文字列。

次のコード例は、タブ文字列のインデントのない行の記述を示しています。

// 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.")

適用対象