Showing results for Testing - .NET Parallel Programming

Feb 15, 2011
0
0

SpinWait.SpinUntil for unit testing

Stephen Toub - MSFT
Stephen Toub - MSFT

One of the hidden gems in .NET 4 is the System.Threading.SpinWait type.  This type is typically used for implementing lock-free solutions, and is used heavily throughout the rest of the threading and parallelism support in .NET 4.  That’s why I call it “hidden”, because most folks don’t implement their own lock-...

Parallel Extensions.NET 4Coordination Data Structures
Jan 15, 2008
0
0

Debugger display of PLINQ queries

Stephen Toub - MSFT
Stephen Toub - MSFT

Sometimes very simple additions to an API or implementation make me happy.  One such nicety in the CTP of PLINQ is the implementation of ToString on the concrete types that represent query operators.  These implementations provide a textual representation of the query structure, which can be very nice for debugging purposes. Consider...

Parallel ExtensionsPLINQTesting

Feedback