TextWriter.Write Method (Object)
.NET Framework 3.0
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)
Assembly: mscorlib (in mscorlib.dll)
| Exception type | Condition |
|---|---|
| The TextWriter is closed. | |
| An I/O error occurs. |
This version of Write is equivalent to Write .
If the specified object is a 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.
For a list of common I/O tasks, see Common I/O Tasks.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: