| 12345678910111213141516171819202122232425262728293031323334353637 | using System;using System.Reactive.Linq;using System.Windows.Forms;using System.Reactive.Disposables;using Excercise7.DictionarySuggestService;namespace Excercise7{    class Program    {        static void Main()        {            var svc = new DictServiceSoapClient("DictServiceSoap");            var matchInDict = Observable.FromAsyncPattern<string, string, string, DictionaryWord[]>                (svc.BeginMatchInDict, svc.EndMatchInDict);            Func<string, IObservable<DictionaryWord[]>> matchInWordNetByPrefix =                term => matchInDict("wn", term, "prefix");            var res = matchInWordNetByPrefix("react");            var subscription = res.Subscribe(                words =>                {                    foreach (var word in words)                        Console.WriteLine(word.Word);                },                ex =>                {                    Console.Error.WriteLine(ex.Message);                }            );            Console.ReadLine();        }    }}
 |