c# - Find All Uses of a Specific Reference -


i have website, code behind references functions within project within same solution. have been tasked pulling out website , existing functionality , putting own solution.

currently code behind looks similar this:

using businessobjectsproject;  namespace batchproject.web {     public partial class autoshoppingcart : system.web.ui.page     {         [webmethod]         public static batchproject loadprojectdetails(string projectid)         {             return businessobjectsproject.batchbo.readbatchproject(converthelper.safeconvertint32(projectid));         }     } } 

however there many (more 20) functions make use of businessobjectsproject reference.

is there simple way list businessobjectsproject functions in autoshoppingcart class? want ensure copy on ensure existing functionality.

if you're using visual studio, right click businessobjectsproject , select find references (or press shift + f12).

the solution suggested blorgbeard useful, remove/rename class , see breaks.


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -