VS2010下如何调试Framework源代码(即FCL)

怕忘记,重新记录一下。

有一种提高自己编程能力的好办法,就是看看.net framework的源码是如何写的?我们在追踪bug的时候,也往往需要追踪到.net framework的源码中去。按照如下方法设置vs2010,即可追踪到.net framwork的源代码中去。

VS2010下如何调试Framework源代码(即FCL)_第1张图片

VS2010下如何调试Framework源代码(即FCL)_第2张图片

可以看出,我将pdb文件放在了d:\msSource\MicrosoftPublicSymbols目录下面,这样在调试的时候,vs会自动去该目录下面找pdb文件。

我们可以看看这个目录下的文件

VS2010下如何调试Framework源代码(即FCL)_第3张图片

调试源码后,我们会找到一些平时不怎么写的东西。比如我追踪 IEnumerable的扩展方法Sum,可以看到

如下的代码:

public static int Sum(this IEnumerable source) {
            if (source == null) throw Error.ArgumentNull("source");
            int sum = 0;
            checked {
                foreach (int v in source) sum += v;
            }
            return sum;
        }

这样,我们就学会了一个扩展方法的写法,何乐而不为呢?

编程的快乐,往往在乎一念之间。 

PS:代码是从微软服务器上下载的,所以设置完毕后,第一次下载过程可能有点长。

更详细的文档如下:

Using the Microsoft Symbol Server to obtain symbol debugging information is now much easier in VS 2010. Microsoft gives you access to their internet symbol server that contains symbol files for most of the .NET framework including the recently announced availability of MVC 2 Symbols. 

SETUP 

In VS 2010 RTM, go to Tools –> Options –> Debugging –> General. Check “Enable .NET Framework source stepping” 
VS2010下如何调试Framework源代码(即FCL)_第4张图片 
We get the following dialog box

 VS2010下如何调试Framework源代码(即FCL)_第5张图片 
This automatically disables “Enable My Code” 
 VS2010下如何调试Framework源代码(即FCL)_第6张图片 
Go to Debugging –> Symbols and Check “Microsoft Symbol Servers”. You can selectively exclude modules if you want to. 
  VS2010下如何调试Framework源代码(即FCL)_第7张图片 
You will get a warning dialog like so: 
VS2010下如何调试Framework源代码(即FCL)_第8张图片 
Hitting OK will start the download process 
  image 
The setup is complete. You are now ready to start debugging!


DEBUGGING

Add a break point to your application and run the application in debug mode (F5 shortcut for me). Go to your call stack when you hit the break point. Right click on a frame that is grayed out. 
VS2010下如何调试Framework源代码(即FCL)_第9张图片 
Select “Load Symbols from” “Microsoft Symbol Servers”. VS will begin a one time download of that assembly. This assembly will be cached locally so you don’t have to wait for the download the next time you debug the app. 
VS2010下如何调试Framework源代码(即FCL)_第10张图片  
We get a one time license agreement dialog box 
VS2010下如何调试Framework源代码(即FCL)_第11张图片

You might see an error like the one below regarding different encoding (hopefully will be fixed). 
VS2010下如何调试Framework源代码(即FCL)_第12张图片   
Assemblies for which the symbols have been loaded are no longer grayed out. Double clicking on any entry in the call stack should now directly take you to the source code for that assembly.

VS2010下如何调试Framework源代码(即FCL)_第13张图片 

VS2010下如何调试Framework源代码(即FCL)_第14张图片

AFAIK, not all symbols are available on the MS symbol server. In cases like that you will see a tab like the one below and be given the option to “Show Disassembly”.

VS2010下如何调试Framework源代码(即FCL)_第15张图片

Enjoy!

你可能感兴趣的:(VS2010下如何调试Framework源代码(即FCL))