Showing results for April 2010 - Page 3 of 4 - .NET Blog

Apr 14, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #10 – Pipeline

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.)  Producer/consumer is a fundamental pattern employed in many parallel applications.  With producer/consumer, one or more producer threads generate data that is consumed by one or more consumer threads.  These consumers can themselves also be producers of f...

.NET Parallel Programming
Apr 13, 2010
Post comments count0
Post likes count0

ThreadPool performance you can see

Stephen Toub - MSFT
Stephen Toub - MSFT

We've spent a lot of time touting improvements to the .NET Framework in .NET 4 around threading, including core enhancements to the performance of the runtime itself.  Sometimes data is more powerful than words, however, and it's useful to be able to see exactly what kind of difference such improvements can make.  To assist with that, her...

.NET Parallel Programming
Apr 13, 2010
Post comments count0
Post likes count0

Connect

CLR Team
CLR Team

As hopefully most of you know, Microsoft has a site called Connect where customers can log bugs and suggestions (http://connect.microsoft.com/).  Issues for .NET can be found in the Visual Studio and .NET Framework feedback category (http://connect.microsoft.com/VisualStudio/Feedback) and can be logged from the main Visual Studio Connect page ...

.NET
Apr 13, 2010
Post comments count0
Post likes count0

Visual Studio 2010 MVC 2 Upgrade Wizard

Web Development Tools Microsoft
Web Development Tools Microsoft

Prior to the RTM release of Visual Studio 2010, the only way to upgrade an ASP.Net MVC 1 application to ASP.Net MVC 2 was to use Eilon Lipton’s tool. With the release of Visual Studio 2010 you will now be able to open your MVC 1 projects in Visual Studio 2010 and upgrade them to ASP.Net MVC 2 projects. Also, you can upgrade the target framework of ...

ASP.NET
Apr 13, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #9 – ObjectPool

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.) An object pool is a mechanism/pattern to avoid the repeated creation and destruction of objects.  When code is done with an object, rather than allowing it to be garbage collected (and finalized if it’s finalizable), you put the object back into a spe...

.NET Parallel Programming
Apr 12, 2010
Post comments count0
Post likes count0

Visual Web Developer 2010 Express has Arrived!

Web Development Tools Microsoft
Web Development Tools Microsoft

Microsoft Visual Web Developer 2010 Express is a free and robust development environment for building, testing and deploying Web applications across the Microsoft Web Platform including ASP.Net, Internet Information Services and SQL Server. Unleash your creativity with powerful design surfaces for building standards-based Web applications and servi...

ASP.NET
Apr 12, 2010
Post comments count0
Post likes count0

New case studies on Parallel Extensions

Stephen Toub - MSFT
Stephen Toub - MSFT

In coordination with today's launch of Visual Studio 2010 and the .NET Framework 4, several case studies have been published on how companies are taking advantage of parallel computing with the .NET Framework to improve the performance of their applications.  It's exciting to see the benefits these companies are seeing and how parallelism is s...

.NET Parallel Programming
Apr 12, 2010
Post comments count0
Post likes count0

Visual Studio 2010 and the .NET Framework 4 are now available!

Stephen Toub - MSFT
Stephen Toub - MSFT

As announced here, Visual Studio 2010 and the .NET Framework 4 are available!  This includes the exciting support for parallel computing that we've been talking about for quite some time now.  For an overview of what's new for developers with managed code, both in terms of frameworks and tools, check out this new article on DevProConnecti...

.NET Parallel Programming
Apr 12, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #8 – ReductionVariable

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.) The new .NET 4 System.Threading.ThreadLocal<T> is quite useful when you need per-thread, per-instance storage.  This is in contrast to the fast ThreadStaticAttribute, which supports only per-thread storage (in .NET 4, ThreadLocal<T> actually layers o...

.NET Parallel Programming
Apr 9, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #7 – Additional TaskSchedulers

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.)In our last two ParallelExtensionsExtras blog tour posts, we’ve discussed two TaskScheduler implementations in ParallelExtensionsExtras: StaTaskScheduler and ConcurrentExclusiveInterleave.  These are just 2 of more than 10 schedulers in ParallelExtensionsExtras, and ...

.NET Parallel Programming