获取一个方法的所有静态执行路径 VS2013,C#

Getting all the static execution paths to a method VS2013,C#

我正在尝试查找一个方法的所有静态执行路径。

除了手动尝试遍历 "the find all usages/View call hierarchy" 的树之外,还有没有办法获取最终调用该方法的所有执行路径?

我不是在寻找 dynamic/polymorphic 调用,只需静态调用就足够了。

ReSharper 提供了通过 Inspect this | Incoming Calls 递归搜索执行路径的能力(默认使用 Ctrl+Alt+Shift+A)。