I’m looking for a way to find a string in my entire solution’s code, i.e. just the effective code excluding the comments, in Visual Studio .NET 2008.
I’m working on Visual Basic code, so the comments in that language begin with a single quote '.
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.
What you are looking for is probably Find Symbol (ALT+F12). This should limit your search to symbols in your code, though you probably cannot search for keywords this way. You can tell it to look in your entire solution and even use
Match substringif that’s what you want.