September 2010
Intermediate to advanced
272 pages
5h 16m
English
In this task, we will run a WF program by loading it from an XAML file.
Create a new Workflow Console Application under the Chapter01 solution and name the project as LoadUpWorkflowFromXML.
Author the Workflow1.xaml file; this workflow will print a string to console as shown in the following screenshot:

Open
Program.cs file and change code as follow:
using System; using System.Activities; using System.Activities.Statements; using System.IO; using System.Collections; using System.Text; ...