TextWriter.Write Method (String, Object, Object)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Writes out a formatted string, using the same semantics as String.Format.

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

Syntax

'Declaration
Public Overridable Sub Write ( _
    format As String, _
    arg0 As Object, _
    arg1 As Object _
)
public virtual void Write(
    string format,
    Object arg0,
    Object arg1
)

Parameters

  • arg0
    Type: System.Object
    An object to write into the formatted string.
  • arg1
    Type: System.Object
    An object to write into the formatted string.

Exceptions

Exception Condition
ArgumentNullException

format is nulla null reference (Nothing in Visual Basic).

ObjectDisposedException

The TextWriter is closed.

IOException

An I/O error occurs.

FormatException

The format specification in format is invalid.

-or-

The number indicating an argument to be formatted is less than zero, or larger than or equal to the number of provided objects to be formatted.

Remarks

This method does not search the specified String for individual newline characters (hexadecimal 0x000a) and replace them with NewLine.

If a specified object is not referenced in the format string, it is ignored.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.