How to locate a variable throughout the whole project in Visual Studio? -
i have c++ visual studio project, in wish locate 1 particular constant throughout whole project. is, want locate particular variable in every single file in project, including .cpp
, .h
.
a previous question seems relevant, able locate variable within one file.
how may it?
you can use quick find available on edit ► find , replace ► quick find menu. key bindings bound ctrl-f.
the quick find dialog box shown in upper right corner of editor window. can change search drop down. search in current document can change entire solution.
if want search .h
files not part of solution can use find in files available on edit ► find , replace ► find in files menu. here can specify scope includes files of specific type in folder.
Comments
Post a Comment