I have a requirement to list out the methods in the cs files and list the each method call inside a method . For example : i have a class
public void method1 ()
{
c2.M2();
}
public void method2 ()
{
c2.m3();
}
Here c2 is another class and m2 m3 are the methods of that class. Here i need to prepare a list c2.m2(), and c2.m3() , i have one hundred or more cs files to list out these details.
Is there any way i can effectively navigate through cs files and search instead of loading them and dealing with file stream readers?