我有一个Workflow Foundation 4活动,该活动具有一个InvokeMethod,它被配置为在Add
类型的实例上调用IList(Of String)
方法,并提供String
类型的参数。
运行它会给我这个错误:
'IList`1' does not have a public instance method named 'Add' matching the parameter
types, generic type arguments, and generic type constraints supplied to InvokeMethod
'InvokeMethod'.
我尝试了我能想到的InvokeMethod活动的所有设置,但没有成功。
所以问题是:如何使InvokeMethod将字符串参数添加到通用列表中?
最佳答案
为什么不使用AddToCollection活动?