C# 如何调试这段.NET BCL代码?

C# 如何调试这段.NET BCL代码?,c#,asp.net,.net,debugging,debug-symbols,C#,Asp.net,.net,Debugging,Debug Symbols,以下方法存在于dllSystem.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 //

以下方法存在于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.NETMVC代码,但不是像这样的一些更核心的东西


注意:此问题与之相关/受其启发。

Visual studio包含一个调试框架的工具。这篇文章描述了如何


说明已移至Microsoft文档:


如果我在看那篇博客时陷入困境,我可以将我的问题添加到OP中以获得额外帮助吗?