How do you explain type forwarding in simple terms ?? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T15:26:27Zhttp://stackoverflow.com/feeds/question/736968http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/736968/how-do-you-explain-type-forwarding-in-simple-terms1How do you explain type forwarding in simple terms ??Perpetualcoder2009-04-10T07:32:56Z2009-04-10T07:41:35Z
<p>I am preparing for MCTS 70-536, after reading <a href="http://msdn.microsoft.com/en-us/library/ms404275.aspx" rel="nofollow">this</a> article. I am not 100% sure I understand the concept of typeforwarding. I find the steps given in the article even more confusing. Whats the deal if I am copying the sourcecode of type to be forwarded and recompiling it. What happens with old dll and the client ??</p>
http://stackoverflow.com/questions/736968/how-do-you-explain-type-forwarding-in-simple-terms/736984#7369842Answer by Marc Gravell for How do you explain type forwarding in simple terms ??Marc Gravell2009-04-10T07:41:35Z2009-04-10T07:41:35Z<p>Type forwarding allows you to relocate a type between assemblies. So originally it is <code>TypeA</code> in <code>AssemblyA</code>. By applying type-forwarding, you can end with <code>TypeA</code> in <code>AssemblyB</code>.</p>
<p>The subtlety is the <em>code that is already compiled</em> doesn't see the change - they ask for the type in <code>AssemblyA</code>, and the runtime silently gives them the type from <code>AssemblyB</code>. This is very important if you have existing code.</p>
<p>However; <em>new</em> code cannot be recompiled referencing <code>TypeA</code> without you referencing <code>AssemblyB</code>.</p>
<p>So:</p>
<ul>
<li>old clients don't need to be recompiled</li>
<li>however, you do need to rebuild both <code>AssemblyA</code> and <code>AssemblyB</code> in the above example</li>
<li>new code (or any recompiled code) must now reference <code>AssemblyB</code> (the new one)</li>
</ul>