Search Results

0
votes
4answers
116 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? …
6
votes

Visual Studio Optimizations

Ensure 'Only build startup projects and dependencies on Run' is selected. This option can be found under Tools -> Options... -> Projects and Solutions -> Build and Run. For large so …
1
vote

What are your experiences with Windows Workflow Foundation?

I consider MS WF as a low-level workflow library rather than a fully fledged enterprise workflow product such as K2. It will enable you to build a workflow enabled application, but is not in itsel …
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 …