Click here to Skip to main content
15,914,413 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone,Our team has developed the Tool which is used to find the reference's of a Changed method in a Project. 1.We used reflection to read the Namespace,Class Name and Method name's e.t.c. 2.We started to search the method'sbody in cs file's and we stored in a List. 3.We have taken each and every method for finding the Reference's But i have seen the reflector tool which reads the complete source code using .dll's . How to would happen? Is there any way to read the source code from reflection?Please help me regarding this Thanks in advance
Posted

You may try to decompile Reflector using Reflector, then study the code which does the code extraction and implement it somehow in your own application. Try to make it different enough though, or you may be sued for copyright infringement.
 
Share this answer
 
Comments
CPallini 2-Nov-10 9:53am    
:-D
If you merely want to compare differences, you could run ildasm.exe on the old and new code, and parse the generated IL source and do a comparison that way.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900