Showing results for April 2013 - Page 2 of 2 - .NET Blog

Apr 5, 2013
Post comments count0
Post likes count0

The Defrag Tools Channel9 series on managed memory diagnostics

maoni
maoni

Recently I did a few videos for the popular "Defrag Tools" series on Channel9. They are just talking about pretty basic things about doing managed memory investigations so I'd imagine for most of you it's something you already know. However, you can feel free to suggest things you'd like to see in the comments of these videos (or on this blog for t...

.NET
Apr 4, 2013
Post comments count1
Post likes count0

Debugging ASP.NET Web API with Route Debugger

Rick_Anderson
Rick_Anderson

Tutorial and Tool written by Troy Dai (Twitter @troy_dai) with assistance from Rick Anderson (Twitter @RickAndMSFT) Search for “asp.net web api routing” on stackoverflow, you’ll find many questions. How exactly does Web API routing work? Why doesn’t my route work? Why is this action not invoked? Often time it is difficult to debug route. To addr...

ASP.NET
Apr 4, 2013
Post comments count0
Post likes count1

.NET memory allocation profiling and Tasks

Stephen Toub - MSFT
Stephen Toub - MSFT

The .NET Framework blog published this morning a guest post from yours truly on .NET Memory Allocation Profiling with Visual Studio 2012.  As you're trying to improve the performance, throughput, and memory usage of code that uses Tasks, the described profiler in Visual Studio can be a valuable tool in your tool belt (of course, the example I ...

.NET Parallel Programming
Apr 4, 2013
Post comments count0
Post likes count0

.NET Memory Allocation Profiling with Visual Studio 2012

.NET Team
.NET Team

This post was written by Stephen Toub, a frequent contributor to the Parallel Programming in .NET blog. He shows us how Visual Studio 2012 and an attention to detail can help you discover unnecessary allocations in your app that can prevent it from achieving higher performance. Visual Studio 2012 has a wealth of valuable functionality, so muc...

.NET
Apr 4, 2013
Post comments count0
Post likes count0

The March 6th NuGet Gallery Outage

Tim Lovell-Smith
Tim Lovell-Smith

On March 6th 2013, nuget.org's package download was broken for one and a half hours. Some outages involve factors beyond our control; this time it was very much our own fault and we would like to apologize. We also want to openly discuss the outage and reassure you that we are working on preventing reoccurences. Timeline of events The outage was ...

NuGetIncident
Apr 3, 2013
Post comments count4
Post likes count1

Tasks, Monads, and LINQ

Stephen Toub - MSFT
Stephen Toub - MSFT

A few years back, Wes Dyer wrote a great post on monads, and more recently, Eric Lippert wrote a terrific blog series exploring monads and C#. In that series, Eric alluded to Task<TResult> several times, so I thought I’d share a few related thoughts on Task<TResult> and the async/await keywords.As both Wes and Eric highlight, a mo...

.NET Parallel Programming