I'm using Visual Studios 2015.
I'd like to see where a class object is declared and defined in my code.
E.g. Where are statements like myClass object1;
?
Also, is there a way to use the find all references tool on a class method and not see other classes' methods of the same name?
E.g. We have myclass1::Run()
, myclass2::Run()
and perhaps a variable Run
somewhere. Can I specify which kind of reference I'm looking for?
Simple questions, but I haven't been able to find the answers elsewhere.