一、启动工作流
WF4启动工作流有两种方式:
- WorkflowInvoker.Invoke();
- WorkflowApplication.Run();
区别在于,Invoke能附着在宿主程序上执行。
static void Main(string[] args) { //方法1 WorkflowInvoker.Invoke(new Workflow1()); //方法2 WorkflowApplication WorkflowInstance1 = new WorkflowApplication(new Workflow1()); WorkflowInstance1.Run(); Console.ReadKey(); }
时间: 2024-10-09 02:14:54