DocDataTextWriter.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Write(Char) |
Appends a |
Write(String) |
Appends a |
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.