C# 应用程序中的建模工作流程
我计划对我的应用程序的数据层进行更改,并希望确定取决于我要更改的方法的每种方法。除了单击方法并选择“查找用法”,然后对返回的每个方法执行相同的步骤直到到达顶部之外,是否有更简单的方法来查找所有这些关系?
I am planning on making a change to the data layer of my application and would like to determine every method which depends on the method I am changing. Is there an easier way to find all these relationships other than clicking on the method and selecting "Find Usages", then performing the same step on each method returned until I get to the top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您获得 NDepend,您可以找到方法/类/等使用或被使用的所有直接和间接事物。
If you get NDepend, you can find all direct and indirect things that a method/class/etc uses or is used by.
Resharper 5 即将推出,除了许多其他有用的功能外,还有一个名为“呼叫跟踪”的功能,它完全可以实现您所描述的功能。
http://www.jetbrains.com/resharper/documentation/whatsnew_50.html#代码分析
Resharper 5 comes out soon, and amongst many other useful features, has a feature called "Call tracking" that does exactly what you are describing.
http://www.jetbrains.com/resharper/documentation/whatsnew_50.html#code_analysis