| c# Programming Glossary: fetchasyncHow does C# 5.0's async-await feature differ from the TPL? http://stackoverflow.com/questions/4054263/how-does-c-sharp-5-0s-async-await-feature-differ-from-the-tpl  archive null for int i 0 i urls.Count i var document await FetchAsync urls i if archive null await archive archive ArchiveAsync document.. is serving two different purposes. The first occurance FetchAsync seems to mean If this value is used later in the method and.. List Url urls for int i 0 i urls.Count i var document FetchAsync urls i removed await if archive null archive.Wait  changed to.. 
 How could the new async feature in c# 5.0 be implemented with call/cc? http://stackoverflow.com/questions/4070237/how-could-the-new-async-feature-in-c-sharp-5-0-be-implemented-with-call-cc  archive null for int i 0 i urls.Count i var document await FetchAsync urls i if archive null await archive archive ArchiveAsync document.. 
 |