Search Results

0
votes
4answers
117 views

Determine property calls between two classes in .Net

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? …
0
votes

Determine property calls between two classes in .Net

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 …