Showing archive results for 2008

Jun 18, 2008
Post comments count0
Post likes count0

Coordination Data Structures Overview

Emad Omara

The June 2008 CTP of Parallel Extensions provides the first look at its 3rd major piece, a set of coordination data structures we lovably refer to as CDS. It contains lightweight and scalable thread-safe data structures and synchronization primitives.  There are of course already many synchronization primitives present in the System.Threading ...

.NET Parallel Programming
Jun 18, 2008
Post comments count0
Post likes count0

Introducing ConcurrentStack

cristina manu

A common problem users run into when writing parallel applications is the lack of the thread-safety support in the .NET collection classes. Users typically need to implement their own synchronization mechanism for achieving the goal of safely reading/writing data to the same shared collection. A largely deprecated solution was to use the synchroni...

.NET Parallel Programming
Jun 16, 2008
Post comments count0
Post likes count0

Anti-virus programs can affect VS build performance

Web Development Tools Microsoft

We have had complaints from some customers saying that their Web Project build performance with VS is very slow and it turns out that for some of the complaints the actual issue was anti-virus programs running on their machines. So, how do anti-virus programs affect VS build? Please take a look at the following snippet from ScottGu's blog to u...

ASP.NET
Jun 11, 2008
Post comments count0
Post likes count0

Multiple control selection in Visual Studio 2008 SP1 RTM

Web Development Tools Microsoft

We have been listening to your [strong] feedback and we are now happy to announce that multiple selection and alignment operations in Design view are coming back and will be included in VS 2008 SP1 RTM and Visual Web Developer Express 2008 SP1 RTM.We do understand that designing pages using absolute positioning of elements is a highly controversial...

ASP.NET
Jun 11, 2008
Post comments count0
Post likes count0

PLINQ Ordering

essey

There is a natural tension between ordering and performance in a parallel partitioning system such as PLINQ, which we addressed as guidance in the Dec07 CTP documentation:  “Although you can opt into ordering, this does come at a cost to performance because it constrains the options which PLINQ can use for executing a query, so it is bet...

.NET Parallel Programming
Jun 11, 2008
Post comments count0
Post likes count0

Parallel Extensions Demo Fun on Channel 9

Stephen Toub - MSFT

When I was at TechEd 2008 Developer last week, I met up with the great Dan Fernandez from Channel 9 to show off Parallel Extensions and to demonstrate some of the sample applications included with our June 2008 CTP.  The cameras were at the ready, so you can see the demonstrations, too: Thanks, Dan!

.NET Parallel Programming
Jun 10, 2008
Post comments count0
Post likes count0

ADO.net Data Service reflection class creation in VS2008 SP1 Beta, a breaking change with CTP time

Web Development Tools Microsoft

I added a blog "ADO.net Data Service reflection class creation in VS2008 SP1 Beta, a breaking change with CTP time" inhttp://blogs.msdn.com/xqiu/archive/2008/05/13/ado-net-data-service-reflection-class-creation-in-vs2008-sp1-beta-a-breaking-change-with-ctp-time.aspxHope it helps for data service lovers.Xin, SDET in Web Development Tools

ASP.NET
Jun 10, 2008
Post comments count0
Post likes count0

Support configuration specific output folders in a Silverlight project

Web Development Tools Microsoft

In Beta1, VS Silverlight tools doesn’t allow users to maintain separate build output folder for different build configuration, and this causes once you switch from “Debug” to “Release” build configuration, under ClientBin folder the existing debug assemblies will be overwritten by the release version. Unless you switch back to “Debug” configuration...

ASP.NET
Jun 10, 2008
Post comments count0
Post likes count0

Localizing a Silverlight application

Web Development Tools Microsoft

VS Silverlight beta2 adjusted its build functionalities to support the new Silverlight runtime localization model, which essentially is “one language, one xap”. This article provides the steps to take to build a localized app Let us say, you want to localize your app for the culture of “ja-jp”. You have created several resource files and you want ...

ASP.NET
Jun 9, 2008
Post comments count0
Post likes count0

Image Colorizer Sample in the June 2008 CTP

Mike Liddell

Continuing the tour of the samples included in the Parallel Extensions June 2008 CTP, we now turn our attention to the "Image Colorizer" application.   This sample uses the following constructs from Parallel Extensions: System.Threading.Parallel.For() and also the following from the standard .NET libraries: System.ComponentModel.BackgroundWor...

.NET Parallel Programming