TextWriter.Write Method (String, array<Object>[]()[])

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

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

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

Syntax

Public Overridable Sub Write ( _
    format As String, _
    ParamArray arg As Object() _
)
public virtual void Write(
    string format,
    params Object[] arg
)

Parameters

  • arg
    Type: array<System..::.Object>[]()[]
    The object array to write into the formatted string.

Exceptions

Exception Condition
ArgumentNullException

format or arg is nullNothingnullptra 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 arg. Length.

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

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