Click or drag to resize
IOutputWindowPaneWrite Method
Writes text to the output window.

Namespace: Tvl.VisualStudio.OutputWindow.Interfaces
Assembly: Tvl.VisualStudio.OutputWindow.Interfaces (in Tvl.VisualStudio.OutputWindow.Interfaces.dll) Version: 2.0.1.0-dev
Syntax
void Write(
	string text
)

Parameters

text
Type: SystemString
The text to write to the output window.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf text is .
Examples
This method works similarly to WriteLine(String), except it never appends a newline to the input text. For an example of how to use the WriteLine(String) method, see the documentation for IOutputWindowService.
See Also