共用方式為


InvokeMethod.GenericTypeArguments 屬性

定義

所包含方法的泛型型別引數。

public:
 property System::Collections::ObjectModel::Collection<Type ^> ^ GenericTypeArguments { System::Collections::ObjectModel::Collection<Type ^> ^ get(); };
public System.Collections.ObjectModel.Collection<Type> GenericTypeArguments { get; }
member this.GenericTypeArguments : System.Collections.ObjectModel.Collection<Type>
Public ReadOnly Property GenericTypeArguments As Collection(Of Type)

屬性值

引數。

範例

下列程式碼範例將示範如何設定 InvokeMethod 活動的 GenericTypeArguments。 此範例來自 使用 InvokeMethod 活動 範例。

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "GenericInstanceMethod",
    GenericTypeArguments = { typeof(string) },
    Parameters =
    {
        new InArgument<string>("Hello world")
    }
},

備註

只有當呼叫的方法是泛型方法時,才必須設定泛型型別引數。

適用於