1

可以在 Visual Studio 中找到所有函数调用。但是有没有办法对变量做同样的事情?

4

2 回答 2

3

您可以使用该Find all references功能。在结果中,您将看到该行,因此您可以快速查看它是否是对变量的访问。

更多信息: http: //www.blackwasp.co.uk/VSFindAllReferences.aspx

另一种肮脏的方式是临时注释变量的声明。Intellisense 将立即更新并显示使用变量的错误。

于 2012-12-12T10:04:14.263 回答
2

如果您右键单击一个变量,您可以执行Find References. 还有Edit> Find and Replace> Find Symbol

于 2012-12-12T10:03:35.983 回答