I have multiple solution which contains multiple projects and with all combined gives my application. Following is the dependency in which my solutions are built:
Solution 1
Solution 2
Solution 3
...
Solution 14
Solution 15
Solution 14 uses some of the methods from Solution 3, so Solution 14 is kind of dependent on solution 3. So We refer Solution3 in Solution14.
Now we have extended functionality which requires me to add some calls in Solution3 which refers to the methods in Solution 14. How can I achieve the late binding for Solution3 features.
Can anybody guide me on this? I have being doing some search and found that Reflection could be useful, but I am not sure. Am I approaching in the right direction?