I have a class with variable “test” in my project. I need to find out at which page of the project/solution this “test” get initialized. Do we have any short cut keys for this, other than Ctl+F and look for entire project.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Very similar to @George’s answer, but I prefer a
Ctrl+Shift+F(Find In Files). Does about the same thing as Find All References, but doesn’t have to compile anything to do it.As for specifically looking for the initialization, a find in files of
text:b*=(making sure Use Regular expressions is on), would find any place where you assigned to text.This is assuming you didn’t mean
Ctrl+Shift+Fin your question.