Showing archive results for 2009

Oct 21, 2009
Post comments count0
Post likes count0

Visual Studio 2010 Beta 2 – Web Tools Overview

Web Development Tools Microsoft
Web Development Tools Microsoft

Visual Studio 2010 Beta 2 has officially shipped! If you haven’t already, download a copy from here. What New with Visual Studio If you are new to Visual Studio 2010 please check out all our previous blogs to get a understanding of all the changes we made for Beta 1 including this intro blog on beta 1: http://blogs.msdn.com/webdevtools/archive...

ASP.NET
Oct 19, 2009
Post comments count0
Post likes count0

What’s new in Beta 2 for the Task Parallel Library? (Part 1/3)

Danny Shih
Danny Shih

Related posts: Visual Studio 2010 and .NET 4 Beta 2 is here!  In terms of completeness and readiness for production coding, Beta 2 promises to be much better than Beta 1, and TPL is one component that delivers significant improvements over what was previously available.  To get you excited about it, this series of posts details...

.NET Parallel Programming
Oct 19, 2009
Post comments count0
Post likes count0

.NET 4 Beta 2 is here!

Stephen Toub - MSFT
Stephen Toub - MSFT

The .NET Framework 4 Beta 2 is now available! MSDN Subscribers can download it today, and it will be generally available for download on Wednesday.  More information is available at https://msdn.microsoft.com/en-us/vstudio/dd582936.aspx.  Additionally, one of the really exciting things about this Beta release is that it’s “go-...

.NET Parallel Programming
Oct 19, 2009
Post comments count0
Post likes count0

Visual Studio 2010 – Beta 2 : Announcements

CLR Team
CLR Team

·         <![endif]>Visual Studio 2010 and .NET Framework 4 Beta 2 availability – The Visual Studio 2010 and .NET Framework 4 Beta 2 will be available to MSDN subscribers on Monday, October 19th, with general availability on October 21st.![if>     · &nb...

.NET
Oct 16, 2009
Post comments count0
Post likes count0

Parallel Computing at PDC09 and TechEd Europe 2009

Stephen Toub - MSFT
Stephen Toub - MSFT

It’s fall, and that means conference season!  In November, members of the Parallel Computing Platform team will be descending upon both PDC09 in Los Angeles and TechEd Europe 2009 in Berlin.  We’re extremely excited to see all of you there and to discuss the new support for parallel computing that’s coming in Visual Stud...

.NET Parallel Programming
Oct 16, 2009
Post comments count0
Post likes count0

Parallel Computing Presentations in Michigan, Ohio, Kentucky, and Tennessee

Stephen Toub - MSFT
Stephen Toub - MSFT

In a week, I’m going to be traveling through Michigan, Ohio, Kentucky, and Tennessee, speaking about parallel computing, Visual Studio 2010, and .NET 4, primarily at corporations during the day and at user groups in the evenings.If you’re in the area and interested, please do attend, and I look forward to meeting you!  A list of ev...

.NET Parallel Programming
Oct 15, 2009
Post comments count0
Post likes count0

Single Project Add View in ASP.Net MVC 2 Preview 2

Web Development Tools Microsoft
Web Development Tools Microsoft

Last week we released ASP.Net MVC 2 Preview 2 for Visual Studio 2008 Sp1. In the box support for single project areas is now included and the Add View tool has been modified to streamline this scenario. A walkthrough that creates two simple single project areas can be found here. If you follow the steps in the walkthrough you will notice that Add C...

ASP.NET
Oct 15, 2009
Post comments count0
Post likes count2

Task.Wait and “Inlining”

Stephen Toub - MSFT
Stephen Toub - MSFT

“What does Task.Wait do?” Simple question, right?  At a high-level, yes, the method achieves what its name implies, preventing the current thread from making forward progress past the call to Wait until the target Task has completed, one way or another.  If the Task ran to completion, Wait will return successfully.  If th...

.NET Parallel Programming
Oct 12, 2009
Post comments count0
Post likes count0

Parallelized Map and Filter Operations

Stephen Toub - MSFT
Stephen Toub - MSFT

Common operations like map and filter are available in parallelized form through PLINQ, though the names differ.  A map can be achieved with PLINQ’s Select operator, and a filter with PLINQ’s Where operator.For example, I could implement a ParallelMap operation that takes in one array and returns another as follows: public static...

.NET Parallel Programming