September 2010
Intermediate to advanced
272 pages
5h 16m
English
In this task, we will create a WF program using InOutArgument. This type of argument is used to receive values and is also used to pass values out to the caller (WF host).
Create a new Workflow Console Application under the Chapter01 solution and name the project as UseInOutArgument.
Create an
InOutArgument type argument: InOutMessage. Author a WF program as shown in the following screenshot. In the Assign activity textbox, type InOutMessage = "Now, I am an OutMessage".

Open the Program.cs file and alter the code as ...