Click here to Skip to main content
Click here to Skip to main content

Type Forwarding in .NET

By , 24 Aug 2008
 

Introduction

Type forwarding is a CLR feature that allows us to move a type from its original assembly to another assembly in such a way that there is no need to recompile the applications referring to the original assembly.

The Requirement

Suppose you have created an assembly named MyLibrary which contains a class named MyClass. Let's say, some of your applications refer to the MyLibrary assembly and utilizes MyClass. In a later phase, you decide to move MyClass from MyLibrary to a newly created assembly called MyAdvancedLibrary. If you ship a new version of MyLibrary (which now doesn't have MyClass), along with MyAdvancedLibrary, then your existing applications looking for MyClass in MyLibrary will not find the MyClass and end up with errors.

The Solution

Now, in order to run your applications without recompiling them, you can use the Type Forwarding feature of the Common Language Runtime.

In the above scenario, you need to apply TypeForwardedToAttribute to the new version of your MyLibrary, so that requests for MyClass are now forwarded to the newly created library MyAdvancedLibrary that now contains MyClass.

Steps

  1. Move the MyClass code from MyLibrary to MyAdvancedLibrary.
  2. Put TypeForwardedToAtrribute in MyLibrary for the MyClass type.
  3. // C# Example
    [assembly:TypeForwardedToAttribute(typeof(MyClass))] 
  4. Compile the newly created MyAdvancedLibrary.
  5. Add a reference of MyAdvancedLibrary into MyLibrary.
  6. Recompile MyLibrary (because MyClass used to be located in that).

Now, you can ship the new version of MyLibrary along with MyAdvancedLibrary and run your applications without a recompile!

The Limitation

The .NET Framework version 2.0 does not allow type forwarding from assemblies written in Visual Basic. However, a Visual Basic application can consume forwarded types if it uses the assemblies coded in C# or C++.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Bhupindra Singh
India India
Member
I started programming for fun when I was in Higher Secondary (1995). It was a table writing program in C..haah!! those were the best days of my life Smile | :)
 
But now it has brought me to no. of jobs in roles of developer, Lead, Architect, Coach and Consultant....
 
.Net c# is my passion specially when it comes to build api and frameworks to facilitates development teams....
 
I always learned things by example, now its a pleasure and responsiblity to give learnings back to next generation of coders.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5membermanoj kumar choubey26 Feb '12 - 21:10 
Nice
Generalasked about the library!memberthangnx25 Apr '11 - 22:53 
hi!
i had read and i have using your lib for my job!
http://www.codeproject.com/KB/graphics/GRAPHICSCARDDESIGNER.aspx.
but textbox object is not for save and open backcolor.
if can! please sent to me suorce code of GraphicalControls.dll.
look forward from you!
thangnx

GeneralMy vote of 5memberbara-brg20084 Aug '10 - 16:40 
unique approach
GeneralType Forwarding in .NETmemberAslam Parvez Memon25 Dec '09 - 9:54 
Thanks for providing nice info.
GeneralThank youmemberTed James19 Nov '09 - 23:42 
this is so well explained far better than in the Microsoft Self-Paced training kit!!!
GeneralGreat Infomembermerlin9814 Sep '08 - 11:06 
Very easy to follow instructions in your article. Good job. 5 from me
 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LINQ Exchange - Learn about LINQ and Lambda Expressions
Web SEO Specialists - The SEO Expert
Joke of the Day and Random Jokes - ReallyFunnyQuickJokes.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

GeneralNice 1memberashu fouzdar4 Sep '08 - 0:45 
However, Simple query. Is it possible without shipping MyLibrary with MyAdvancedLibrary.
 
dnpro
"Very bad programmer"

GeneralRe: Nice 1memberQwertie9 Sep '08 - 14:42 
I think that's impossible. But I guess you could ship a really tiny version of MyLibrary.dll that contains nothing but forwards.
GeneralRe: Nice 1memberBhupindra Singh9 Sep '08 - 20:24 
Yes Its Impossible without shippign MyLibrary.dll, Qwertie's Suggestion for deploying a tiny version is a really good work around.
Thanks!!
 
Bhupen

GeneralNice infomemberDinesh Mani25 Aug '08 - 17:40 
Clear and concise! Great job!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 25 Aug 2008
Article Copyright 2008 by Bhupindra Singh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid