less than 1 minute read

While preparing for the 70–551 exam I came across the new TypeForwardedToAttributes class. Searching for this on MSDN brought up “no search results”. Hmm.. that sounded funny.

Searching on Live did bring up some results. The problem stems from the fact that the actual class name is TypeForwardedToAttribute not TypeForwardedToAttributes as incorecctly stated in the exam preparation guide page.

A handy feature too which allows you to move classes from one assembly to another without breaking existing applications that have the earlier reference. Bill Bozeman’s blog has a good overview on the TypeForwardedToAttributes class with examples.