Share via


DataSetTestCondition.WriteLine Method (String, Object[])

 

Diagnostic method that outputs the specified formatted string by using WriteLine.

Namespace:   Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions
Assembly:  Microsoft.Data.Tools.Schema.Sql.UnitTesting (in Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll)

Syntax

protected static void WriteLine(
    string format,
    params object[] args
)
protected:
static void WriteLine(
    String^ format,
    ... array<Object^>^ args
)
static member WriteLine : 
        format:string *
        [<ParamArrayAttribute>] args:Object[] -> unit
Protected Shared Sub WriteLine (
    format As String,
    ParamArray args As Object()
)

Parameters

  • format
    Type: System.String

    A composite format string consists of zero or more runs of fixed text intermixed with one or more format items.

  • args
    Type: System.Object[]

    The corresponding objects to write using format.

See Also

DataSetTestCondition Class
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions Namespace

Return to top