Sign In
Jennifer Marsman
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
Ann Arbor
Architecture
C#
Cloud Computing
Code To Live
Conferences
Featured Women in Tech
Give Camp
HTML5
Internet Explorer
Multitouch
Parallel Programming
Silverlight
Surface
Testing
Upcoming Events
Visual Studio
Webcasts
Windows
Windows Azure
Windows Phone
Women in Tech
WPF
XBOX
Archive
Archives
May 2012
(4)
April 2012
(3)
March 2012
(1)
February 2012
(3)
August 2011
(6)
July 2011
(2)
June 2011
(3)
May 2011
(7)
April 2011
(10)
March 2011
(1)
February 2011
(1)
December 2010
(6)
November 2010
(4)
October 2010
(2)
September 2010
(1)
June 2010
(7)
May 2010
(6)
April 2010
(2)
March 2010
(3)
February 2010
(2)
January 2010
(1)
December 2009
(1)
November 2009
(3)
October 2009
(2)
September 2009
(1)
August 2009
(1)
July 2009
(5)
June 2009
(9)
May 2009
(5)
April 2009
(3)
March 2009
(3)
January 2009
(2)
December 2008
(2)
October 2008
(4)
September 2008
(2)
August 2008
(3)
July 2008
(3)
June 2008
(6)
May 2008
(8)
April 2008
(8)
June, 2010
MSDN Blogs
>
Jennifer Marsman
>
June, 2010
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Jennifer Marsman
Parallel Programming in .NET 4.0: And Much, Much More…
Posted
over 2 years ago
by
jennmar
0
Comments
In my Parallel Programming blog series this week, we’ve looked at: PLINQ Parallel class Tasks Parallel Tasks and Parallel Stacks windows in Visual Studio 2010 I want to conclude by frantically listing some other parallel support that I didn’t have time...
Jennifer Marsman
Parallel Programming in .NET 4.0: Parallel Tasks and Parallel Stacks windows in Visual Studio 2010
Posted
over 2 years ago
by
jennmar
0
Comments
In Visual Studio 2010, there is new support for parallel programming as well. In particular, I want to discuss two new debugging windows, Parallel Tasks and Parallel Stacks. To access these windows, hit F5 in Visual Studio to run with debugging...
Jennifer Marsman
Parallel Programming in .NET 4.0: Using Tasks
Posted
over 2 years ago
by
jennmar
5
Comments
So far in this series, we have discussed PLINQ and the Parallel class . These allow you to take existing code (LINQ queries, for/foreach loops, etc.) and run it in parallel. In today’s post, let’s examine how you might leverage .NET 4.0 if...
Jennifer Marsman
Parallel Programming in .NET 4.0: Static Parallel Class (For, ForEach, Invoke)
Posted
over 2 years ago
by
jennmar
1
Comments
More great support for parallel computing in .NET 4.0 can be found in the static Parallel class . This static class provides support for parallelizing regions of your code. It’s located in the namespace System.Threading.Tasks. For example...
Jennifer Marsman
Parallel Programming in .NET 4.0: PLINQ
Posted
over 2 years ago
by
jennmar
0
Comments
This week, I am writing a series of blog posts on the support for parallel programming in .NET 4.0 and Visual Studio 2010. Let’s start with PLINQ . Parallel LINQ (PLINQ) is a query execution engine that accepts any LINQ-to-Objects or LINQ...
Jennifer Marsman
What is the difference between var and dynamic in C#?
Posted
over 2 years ago
by
jennmar
6
Comments
Many people have expressed confusion around the difference between var and dynamic in C#. For both of them, the type is inferred rather than explicitly declared. dynamic test = 1; var test2 = 2; If I hover my mouse over the “var...
Jennifer Marsman
When does cloud computing make sense?
Posted
over 2 years ago
by
jennmar
0
Comments
There are many scenarios when it makes business sense to utilize a cloud approach. I want to discuss two scenarios that I believe are particularly compelling for using cloud computing: new site launches and cyclic traffic. New Site Launches...
Page 1 of 1 (7 items)