Showing results for July 2009 - .NET Blog

Jul 20, 2009
Post comments count0
Post likes count0

Asynchronous programming in .NET survey

phillips.joshua
phillips.joshua

Update:  The survey is now closed.  Thanks to all that participated! We’ve heard our customers’ frustrations with asynchronous programming and their call for improved support.  We are hoping to better understand why and how you and your customers use asynchronous programming in .NET and how the support we provide for...

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

CLR 4: Making the AssemblyResolve event more useful

CLR Team
CLR Team

 In the introductory post on CLR Binder (‘Understanding the Binder – Part 1’), we listed the set of steps that the CLR Binder follows, in order to locate an assembly and bind to it. On reading this, an obvious question comes to mind. What happens when all of these steps fail to locate the assembly? Does the binder simply quit...

.NET
Jul 14, 2009
Post comments count0
Post likes count0

Take the .Net 4 Beta1 survey

CLR Team
CLR Team

 Here is a survey to understand you think about .Net 4 Beta1, and to get a sense of the level of satisfaction, particularly while trying to upgrade existing managed applications to CLR 4, or while creating new CLR 4 applications. This survey should take you about 20 minutes to complete. Here is the link to the survey.

.NET
Jul 14, 2009
Post comments count0
Post likes count0

Take the .Net 4 Beta1 survey

CLR Team
CLR Team

 Here is a survey to understand you think about .Net 4 Beta1, and to get a sense of the level of satisfaction, particularly while trying to upgrade existing managed applications to CLR 4, or while creating new CLR 4 applications. This survey should take you about 20 minutes to complete. Here is the link to the survey.

.NET
Jul 14, 2009
Post comments count0
Post likes count0

Software Development Engineer Opportunity on Visual Web Developer

Web Development Tools Microsoft
Web Development Tools Microsoft

The Visual Web Developer team is looking for a motivated software engineer that wants to work on next set of Web related features in Visual Web Developer and Visual Studio, shipping Visual Studio 2010 and beyond. Web development is a highly competitive area and Visual Web Developer is a primary tool that helps driving Windows Server, IIS and AS...

ASP.NET
Jul 14, 2009
Post comments count0
Post likes count0

Meet the CLR Team, learn about CLR 4

CLR Team
CLR Team

Here is your chance to get the scoop straight from the proverbial horse’s mouth. Join the CLR team for an interactive Live Meeting session on Friday, July 17th 2009, and find out what’s new in CLR 4. Apart from an overview of what’s coming up in CLR 4. we will specifically be covering Garbage Collection, NGen and Performance. &nb...

.NET
Jul 10, 2009
Post comments count0
Post likes count0

Parallel Computing at Imagine Cup 2009

Stephen Toub - MSFT
Stephen Toub - MSFT

On Wednesday, Microsoft announced the Imagine Cup 2009 worldwide winners: https://www.microsoft.com/presspass/press/2009/jul09/07-07ImagineCup2009WinnersPR.mspxCongratulations to Team Biollel that took first place in the Parallel Computing Award for their “Parallel implementation of maximum likelihood method of phylogenetic tree construction ...

.NET Parallel Programming
Jul 10, 2009
Post comments count0
Post likes count0

Interested in parallel computing? We’re hiring!

Stephen Toub - MSFT
Stephen Toub - MSFT

If you're reading this post, you most likely have an interest in parallel or distributed computing, writing concurrent software, and the like.  Take that interest a step further, and help us make the manycore era a successful reality by coming to work on the Parallel Computing Platform team at Microsoft.We currently have several positions avai...

.NET Parallel Programming
Jul 9, 2009
Post comments count0
Post likes count0

Parallel.Invoke() vs. Explicit Task Management

cristina manu
cristina manu

  Parallel Extensions offers a large variety of APIs supporting parallelism. During this blog the discussion will be focused on the methodology for making a choice between two of the new Parallel Extensions concepts: parallelism achieved by using Parallel.Invoke() and parallelism achieved through the use of Tasks. Suppose that you wa...

.NET Parallel Programming
Jul 7, 2009
Post comments count0
Post likes count0

TaskCreationOptions.PreferFairness

Stephen Toub - MSFT
Stephen Toub - MSFT

One of the ways in which the Task Parallel Library achieves good performance is through “work-stealing”.  Work-stealing is supported in the .NET 4 ThreadPool for access through the Task Parallel Library and its default scheduler.  This manifests as every thread in the ThreadPool having its own queue for work; when that thread ...

.NET Parallel Programming