我有一个活动,我在其中声明了一个没有类型的 InArgument(因为我想在设计时知道表达式的类型)。
当我执行活动时,我在 var contentTelegram 行中收到此错误:
"The argument of type '<type>' cannot be used. Make sure that it is declared on an activity."
这是我的代码:
public InArgument Content { get; set; }
protected override PlcMessage Execute(CodeActivityContext context)
{
try
{
var contentTelegram = Content.Get(context);
return new PlcMessage();
}
catch (Exception ex)
{
throw;
}
}