Do you need both .net 3.5 and 4.0 installed or just .net 4?

I remember reading something once from Microsoft that stated: “.NET 4.0 adds in-process side-by-side compatibility with earlier versions of the Framework. This feature allows an application process to simultaneously run part of its code using the .NET Common Language Runtime (CLR) 4 and other parts using older versions of the CLR.” So to answer your … Read more

Windows Workflow Foundation 4.0 Tutorials / Introductions [closed]

I’ve discovered recently myself that there’s not a lot of online content available. Check out the Workflow Foundation 4 Resources and Community site on MSDN for some good articles and labs. Also, download the WF4 Samples. I’ve learned a lot from poking through these samples and trying things out locally. As for the WHY of … Read more

What is .Net Framework 4 extended?

Got this from Bing. Seems Microsoft has removed some features from the core framework and added it to a separate optional(?) framework component. To quote from MSDN (http://msdn.microsoft.com/en-us/library/cc656912.aspx) The .NET Framework 4 Client Profile does not include the following features. You must install the .NET Framework 4 to use these features in your application: * … Read more

Things in .NET Framework 4 that every programmer should know [closed]

Parallel for loops Parallel.For(0,10,(i)=> { // Do stuff in parallel. }); The rest of the Parallel class provides some other great things like Parallel.Invoke(…) and Parallel.ForEach(…). Also, if you do anything with Linq, you can use the ParallelEnumerable.AsParallel() Method to convert your Linq queries to run in parallel. It’s all built on the Task Parallel … Read more