共用方式為


InvokeMethod 建構函式

定義

建立 InvokeMethod 類別的新執行個體。

public:
 InvokeMethod();
public InvokeMethod ();
Public Sub New ()

範例

下列程式碼範例將示範如何建立 InvokeMethod 活動。 此範例來自 使用 InvokeMethod 活動 範例。

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "InstanceMethod",
    Parameters =
    {
        new InArgument<string>("My favorite number is"),
        new InArgument<int>(42),
        new InArgument<string>("first item of the param array"),
        new InArgument<string>("second item of the param array"),
        new InArgument<string>("third item of the param array")
    }
},

適用於