Posted: 9/7/2010
Hi, I want to write some program that would read through assemblies and goes into the method and find out all the calls that are made in that method. Can you please help me write that...
So suppose there is a method Execute and it calls
Execute()
{
(new Manager1()).SomeMethod1();
(new Manager2()).SomeMethod2();
(new Manager3()).SomeMethod3();
}
I want to write Manager1 and someMethodX, all these to a database.
Posted: 9/9/2010
Any replies? Apart from this I also need the following:
if(condition1)
if(condition2)
if(condition3)
Writing Coniditons, SomeMethodX, ManagerX to database..