DotNetShoutout - Stories tagged with SOSEX
2
Shouts

Exploring SOSEX and Windbg to debug .NET 4.0 « Naveen's Blog

posted by reshmireshmi 1129 days, 23 hours, 28 minutes ago
Wednesday, April 21, 2010 11:51:17 AM GMT
With the latest release of sosex comes a new set of functions to debug. It is pretty awesome that one person (Steve) alone could pull of such cool things. In this blog post, I am just going to demonstrate how easy it is to debug managed code using sosex compared to sos. using System; using System.Collections.Generic; namespace MemCheck { internal class Test { Dictionary (more)
category: Architecture | clicked: 7 | comment | | source: bit.ly
tags: .net 4, SOS, WinDbg, SOSEX
7
Shouts

Debugging .Net framework source code within Windbg

published 1170 days, 23 hours, 3 minutes ago posted by reshmireshmi 1171 days, 23 hours, 12 minutes ago
Thursday, March 11, 2010 12:16:07 PM GMT Wednesday, March 10, 2010 12:06:53 PM GMT
One the coolest thing Microsoft did was to release the .NET Framework source code. In this post, I am going to demonstrate, how we could have a break-point on the .NET framework source code by line numbers ,using Windbg ,very similar to doing inĀ  VS.NET. The first step towards doing this is to download .NET Framework Source Code and installing it on the local machine. The next step is to set the symbol path environment variable. My NTSYMBOL_PATH is set to SRVd:\dev\symbolshttp://referencesource.mic... (more)
category: Architecture | clicked: 2 | comment | | source: bit.ly
tags: .NET Framework, SOS, WinDbg, Debugging, SOSEX