C# tuple 2.0 - Logic to be rewritten in 1.1 frameworkHi, <br/><br/>We are into Reports development using C# and PDF Library (for front end). The development is done in Visual studio 2005/2.0 framework. Now since the production has 1.1 framework, I was asked to &quot;downgrade&quot; to VS 2003.<br/>The problem is we have Tuple/generics in 2.0. After I recreated the project in 1.1, it is giving me all kinds of errors.<br/><br/>Can you please help me out, point me in the direction of how to recreate the tuple logic in VS 2003?<br/><br/>Thank you© 2009 Microsoft Corporation. All rights reserved.Mon, 29 Jun 2009 11:22:19 Zd0454add-e2fd-4bf5-b69e-8ad4587da642http://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/d0454add-e2fd-4bf5-b69e-8ad4587da642#d0454add-e2fd-4bf5-b69e-8ad4587da642http://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/d0454add-e2fd-4bf5-b69e-8ad4587da642#d0454add-e2fd-4bf5-b69e-8ad4587da642CSharp Consultanthttp://social.msdn.microsoft.com/Profile/en-US/?user=CSharp%20ConsultantC# tuple 2.0 - Logic to be rewritten in 1.1 frameworkHi, <br/><br/>We are into Reports development using C# and PDF Library (for front end). The development is done in Visual studio 2005/2.0 framework. Now since the production has 1.1 framework, I was asked to &quot;downgrade&quot; to VS 2003.<br/>The problem is we have Tuple/generics in 2.0. After I recreated the project in 1.1, it is giving me all kinds of errors.<br/><br/>Can you please help me out, point me in the direction of how to recreate the tuple logic in VS 2003?<br/><br/>Thank youMon, 22 Jun 2009 20:36:54 Z2009-06-22T20:36:54Zhttp://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/d0454add-e2fd-4bf5-b69e-8ad4587da642#991e9af4-3073-4fa4-a169-0585787677e1http://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/d0454add-e2fd-4bf5-b69e-8ad4587da642#991e9af4-3073-4fa4-a169-0585787677e1Karel Zikmundhttp://social.msdn.microsoft.com/Profile/en-US/?user=Karel%20ZikmundC# tuple 2.0 - Logic to be rewritten in 1.1 frameworkWhich Tuple class do you mean? The only Tuple around I know about will be part of next .NET Framework 4.0 release (see <a href="http://msdn.microsoft.com/en-us/library/system.tuple(VS.100).aspx">Tuple class pre-release documentation</a>).<br/><br/>In general, if some feature was new in 2.0 and it is not part of 1.1 (e.g. generics) and you need it on 1.1, then you will have to work around it. For example, create your own Tuple or use object with casting instead of having a generic class. There is no simple easy automated way how to &quot;downgrade&quot; your sources or binaries from 2.0 to 1.1.<br/><br/>-KarelMon, 22 Jun 2009 23:26:02 Z2009-06-22T23:26:02Z