Showing results for August 2010 - .NET Blog

Aug 12, 2010
Post comments count0
Post likes count0

“C# 4.0 in a Nutshell” parallel programming content

Stephen Toub - MSFT
Stephen Toub - MSFT

Joe Albahari, author of "C# 4.0 in a Nutshell", has just published on his Web site the material from his book covering Parallel Extensions.  You can find his extensive article here:http://www.albahari.com/threading/part5.aspxNice work, Joe.

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

An example of packaging web application containing database upgrade SQL file

Web Development Tools Microsoft
Web Development Tools Microsoft

A few months ago, we have a blog talking about extending the web publishing pipeline to package database project deployed SQL file.  In this blog, I’ll show step by step example of packaging web application with SQL Server database upgrade SQL file using Visual Studio 2010.  This way, we can generate a web package with incremental SQL scr...

ASP.NET
Aug 6, 2010
Post comments count0
Post likes count0

Hot Fix Released for the Issue of Visual Studio 2010 Crashing When Switching to the Design View

Web Development Tools Microsoft
Web Development Tools Microsoft

When switching to the design view, a page containing numerous controls inside an editing region such as View or Panel may cause a crash in Visual Studio 2010. We have released a hot fix for this issue on Connect at http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=30462&wa=wsignin1.0 and on Code Gallery at htt...

ASP.NET
Aug 5, 2010
Post comments count0
Post likes count0

FAQ :: TaskScheduler.UnobservedTaskException event doesn’t work?

Danny Shih
Danny Shih

Recall that if exceptions thrown from Task bodies are left unobserved, they will be escalated.  In .NET 4, this means that TPL will throw them on the finalizer after the Task objects are available for garbage collection.  The UnobservedTaskException event on the TaskScheduler class was added as a last-resort method to observe such excepti...

.NET Parallel Programming