The Evolution Of C#
exceptionalasp.net
The Evolution Of C#
1–10 of 10 posts
Re: The Evolution Of C#
#2I'd really appreciate any feedback on my writing style, presentation etc. The site around it is obviously still a big work in progress so don't worry too much about the design!
Re: The Evolution Of C#
#3Re: The Evolution Of C#
#4It's a very interesting feature.
Re: The Evolution Of C#
#5You should have added about what is coming up for C# soon - async: http://msdn.microsoft.com/en-us/vstudio/async.aspx It's a very interesting feature.
Re: The Evolution Of C#
#6You should have added about what is coming up for C# soon - async: http://msdn.microsoft.com/en-us/vstudio/async.aspx It's a very interesting feature.
I should have but I haven't had time to look into it and understand it yet, maybe a future post. There's a lot of stuff in the framework for parallel programming now, time to figure out which is still relevant.
Re: The Evolution Of C#
#7You should have added about what is coming up for C# soon - async: http://msdn.microsoft.com/en-us/vstudio/async.aspx It's a very interesting feature.
I should have but I haven't had time to look into it and understand it yet, maybe a future post. There's a lot of stuff in the framework for parallel programming now, time to figure out which is still relevant.
Jon Skeet has written a number of insanely detailed articles on it.
Re: The Evolution Of C#
#8Earlier quoted context omitted.
I should have but I haven't had time to look into it and understand it yet, maybe a future post. There's a lot of stuff in the framework for parallel programming now, time to figure out which is still relevant.
It's pretty simple, "await/async" rewrites normal-looking code to continuation passing code the same way "yield return/yield break" rewrites normal-looking code to be a state-machine. Jon Skeet has written a number of insanely detailed articles on it.
Re: The Evolution Of C#
#9Earlier quoted context omitted.
I should have but I haven't had time to look into it and understand it yet, maybe a future post. There's a lot of stuff in the framework for parallel programming now, time to figure out which is still relevant.
Oh and the PDC session added "compiler as a service", which was very interesting. You should go watch the PDC session on the future of C# and VB. It basically goes through async and compiler as a service idea.