What is the general feeling over C# 5 and the new ASYNC keyword ?
Asynchrony in C# 5, Part One - Fabulous Adventures In Coding - Site Home - MSDN Blogs
3 replies to this topic
#1
Posted 26 March 2011 - 02:02 PM
int coffeePerDay = 10; // need to cut down!!!Codingfriends
|
|
|
#2
Posted 26 March 2011 - 04:10 PM
Looks interesting, will make writing async code easier. I'd like to know more on how the threading is handled (specifically accessing GUI thread, something they should take a look at :))
#3
Posted 27 March 2011 - 12:02 PM
At present I have been using Mono within a Linux setup, but thinking about trying out the a Visual Studio instance either within Linux (Wine) or natively just for checking out the latest version and also some things that Mono does not implement.
int coffeePerDay = 10; // need to cut down!!!Codingfriends
#4
Posted 09 April 2011 - 12:08 AM
The proposed Await Keyword in C# 5 to simplify asynchronous programming is no doubt one of the coolest things to come out of Microsoft PDC 2010. The current model of using Begin and End Async with callback methods is quite a pain in the butt. I don't know anyone who really enjoys that style of programming. At a brief glance it appears that in C# 5 the compiler will handle all the plumbing and all we need to do is use the new Await Keyword as necessary.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account


Back to top









