Writes a formatted string.

Namespace:  Gallio.Framework
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public static void Write(
	string format,
	params Object[] args
)
Visual Basic (Declaration)
Public Shared Sub Write ( _
	format As String, _
	ParamArray args As Object() _
)

Parameters

format
Type: System..::.String
The format string.
args
Type: array< System..::.Object >[]()[]
The format string arguments.

Remarks

This is a convenience method that forwards the request to the current default log stream writer as returned by the Default property.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if format is null.

See Also

StringFormat(String, array<Object>[]()[])