TextWriter.Write Method (Object)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Writes the text representation of an object to the text stream by calling ToString on that object.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Overridable Sub Write ( _
    value As Object _
)
public virtual void Write(
    Object value
)

Parameters

Exceptions

Exception Condition
ObjectDisposedException

The TextWriter is closed.

IOException

An I/O error occurs.

Remarks

This version of Write is equivalent to Write.

If the specified object is nullNothingnullptra null reference (Nothing in Visual Basic), no action is taken and no exception is thrown. Otherwise, the object's ToString method is called to produce the string representation, and the resulting string is then written to the output stream.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

TextWriter Class

Write Overload

System.IO Namespace