如何调试 - 逐步执行此.NET BCL代码?

时间:2012-10-07 23:54:37

标签: c# asp.net .net debugging debug-symbols

dll System.Web.Security

中存在以下方法
Dll: System.Web.Security 
File:  CookielessHelper.cs
Method: 

    // This function is called for all requests -- it must be performant.
    //    In the common case (i.e. value not present in the URI, it must not
    //    look at the headers collection
    internal void RemoveCookielessValuesFromPath() 
    { ... }

有人可以通过列出我在这个方法中设置断点所需的步骤来帮助我,这样我可以“找出一些东西”吗?

如果有帮助,我也安装了ReSharper 7

我已经尝试了一些但却无法弄清楚如何做到这一点:(我最接近的是逐步执行一些ASP.NET MVC代码..但不是一些更核心的东西,像这样:(

希望这可以做到:)

干杯!

注意:此问题与this previously asked SO question相关/启发。