我在 Visual Studio 的 WF4 中设计了一个工作流。它是如此简单,我只想以这种方式执行它。
using (WorkflowRuntime workflowRuntime = new WorkflowRuntime())
{
System.Workflow.Runtime.WorkflowInstance instance = workflowRuntime.CreateWorkflow(typeof(Workflow1));//My workflow
instance.Start();
}
但是当我执行这个我得到以下错误。
The input workflow type must be an Activity.Parameter name: workflowType