Writes a formatted string followed by a line terminator to the debugger by using the OutputDebugString function.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

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

Parameters

format
Type: System..::..String
A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.
args
Type: array<System..::..Object>[]()[][]
An object array containing zero or more objects to format.

See Also