Determine property calls between two classes in .Net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:19:25Z http://stackoverflow.com/feeds/question/523431 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net 0 Determine property calls between two classes in .Net Gareth D 2009-02-07T08:07:33Z 2009-02-07T17:10:40Z <p>Given two .Net types, type A and type B, how could one determine all property calls to type A (including sub classes of type A) made from type B?</p> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/523437#523437 0 Answer by Anton Gogolev for Determine property calls between two classes in .Net Anton Gogolev 2009-02-07T08:11:28Z 2009-02-07T08:11:28Z <p>You can do that using StackFrame and StackTrace classes, but that is generally considered to be a bad practice.</p> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/523449#523449 4 Answer by Jon Skeet for Determine property calls between two classes in .Net Jon Skeet 2009-02-07T08:27:21Z 2009-02-07T08:27:21Z <p>You'd have to find all the executable members (methods, properties, events, constructors) and call <a href="http://msdn.microsoft.com/en-us/library/system.reflection.methodbase.getmethodbody.aspx" rel="nofollow">MethodInfo.GetMethodBody</a> to get the raw IL. Then parse that IL and look for access to properties. Don't forget to get virtual methods declared in base classes as well.</p> <p>Good luck - see you in 6 months! Seriously, this isn't going to be easy, and sounds like an unusual requirement. What's the bigger picture here?</p> <p>If you don't need to do this at execution time, but just want to see dependencies, you may find that <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> will help you. (Heck, maybe NDepend exposes an API you can use to do it at execution time - worth checking, I suppose.)</p> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/523467#523467 1 Answer by Petar Repac for Determine property calls between two classes in .Net Petar Repac 2009-02-07T08:50:44Z 2009-02-07T08:50:44Z <p>According to this blog entry <a href="http://codebetter.com/blogs/patricksmacchia/archive/2008/03/18/mono-cecil-vs-system-reflection.aspx" rel="nofollow">Mono.Cecil vs. System.Reflection</a> from Patrick Smacchia's blog NDepend uses <a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> to analyze assemblies. </p> <p>Maybe it could be useful.</p> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/524134#524134 0 Answer by Gareth D for Determine property calls between two classes in .Net Gareth D 2009-02-07T17:10:40Z 2009-02-07T17:10:40Z <p>The solution involves static analysis of the code - essentially we are looking for dependencies on type A in type B. Out of the box the .Net reflection APIs can only take you so far before you have to resort to parsing the IL - as Jon notes below this is not to be taken lightly. The answers below have led to a couple of libraries that may help, I will be investigating them both:</p> <ul> <li><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono-cecil</a></li> <li><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a></li> </ul>