System.IO.TextWriter.Write Method

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

Syntax

public virtual void Write (object value)

Parameters

value
The object to write.

Exceptions

TypeReason
System.IO.IOException An I/O error occurred.

Remarks

This overload is equivalent to the TextWriter.Write(string) overload.

If the specified object is null, 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. The TextWriter.FormatProvider property, if not null, specifies the culture-specific formatting.

For a list of common I/O tasks, see Common I/O Tasks.

Requirements

Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0