Skip to Content
Microsoft Windows Workflow Foundation 4.0 Cookbook
book

Microsoft Windows Workflow Foundation 4.0 Cookbook

by Andrew Zhu
September 2010
Intermediate to advanced content levelIntermediate to advanced
272 pages
5h 16m
English
Packt Publishing
Content preview from Microsoft Windows Workflow Foundation 4.0 Cookbook

A number guessing game in Sequence

In this task, we will create a guess number game in the Sequence activity. This task will also demonstrate the usage of the DoWhile and IfElse activities.

How to do it...

  1. Create a workflow project:

    Create a Workflow Console Application and name it GuessNumberGameInSequence.

  2. Create a ReadNumberActivity to receive your guess number:

    Create a new code file, name it ReadNumberActivity.cs, and fill the file with the following code:

    using System; using System.Activities; namespace GuessNumberGameInSequence { public sealed class ReadNumberActivity : CodeActivity { public OutArgument<int> OutNumber { get; set; } protected override void Execute(CodeActivityContext context) { OutNumber.Set(context, Int32.Parse(Console.ReadLine())); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Essential Windows Workflow Foundation

Essential Windows Workflow Foundation

Dharma Shukla, Bob Schmidt

Publisher Resources

ISBN: 9781849680783Other