DocDataTextWriter.Write Method

Definition

Overloads

Write(Char)

Appends a char to the underlying StringBuilder.

Write(String)

Appends a string to the underlying StringBuilder.

Write(Char)

Appends a char to the underlying StringBuilder.

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

Parameters

ch
Char

The char that is appended to the underlying StringBuilder.

Applies to

Write(String)

Appends a string to the underlying StringBuilder.

public:
 override void Write(System::String ^ s);
public:
 override void Write(Platform::String ^ s);
 override void Write(std::wstring const & s);
public override void Write (string s);
override this.Write : string -> unit
Public Overrides Sub Write (s As String)

Parameters

s
String

The string that is appended to the underlying StringBuilder.

Applies to