.NET 2.0 or 3.5? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T21:52:44Zhttp://stackoverflow.com/feeds/question/219051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/219051/net-2-0-or-3-513.NET 2.0 or 3.5?Shawn2008-10-20T16:27:02Z2008-10-20T18:06:11Z
<p>Our clients use a vb6 version of our software.</p>
<p>We are upgrading them to a .NET application written in C#...</p>
<p>Is there less bulk using .net 2.0 than .net 3.5?</p>
<p>My definition of less bulk would be: Smaller size, smaller installation time, etc.</p>
<p>Most of them probably already have 2.0 anyway.</p>
<p>I only ask because I would like to take advantage of LINQ in 3.5.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219056#2190561Answer by Shahin for .NET 2.0 or 3.5?Shahin2008-10-20T16:28:29Z2008-10-20T16:28:29Z<p>If you would like to take advantage of LINQ, then go for 3.5! I find there's not more 'bulk' when using it myself, but unless you want to use LINQ, then either is fine.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219057#2190572Answer by swilliams for .NET 2.0 or 3.5?swilliams2008-10-20T16:28:32Z2008-10-20T16:28:32Z<p>.NET 3.5 is .NET 2.0 + more libraries and extensions, so yes, the install is bigger. In my opinion however, it is very much worth the extra bulk because of the extra stuff it gives you.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219060#2190600Answer by Alexandre Brisebois for .NET 2.0 or 3.5?Alexandre Brisebois2008-10-20T16:29:10Z2008-10-20T16:29:10Z<p>I would suggest that you go straight with visual studio 2008 and .net 3.5 sp1,
2.0 is the basis of 3.5 and you can easily start using 2.0 and then start to use 3.5 functionalities.</p>
<p>Furthermore 3.5 SP1 also brings tweaks to the 2.0 framework which are nice to have.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219062#2190624Answer by James Atkinson for .NET 2.0 or 3.5?James Atkinson2008-10-20T16:29:21Z2008-10-20T16:29:21Z<ol>
<li><p>Is not installing .NET 3.5 just to save a few Mb really that much more important that gaining a huge increase in productivity with LINQ and other .NET 3.5 features?</p></li>
<li><p>Why start off behind in technology?</p></li>
</ol>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219064#2190642Answer by Joel Coehoorn for .NET 2.0 or 3.5?Joel Coehoorn2008-10-20T16:29:38Z2008-10-20T16:29:38Z<p>The .Net 3.5 runtime is ~50Mb. The 2.0 runtime is ~23Mb.</p>
<p>But if you control the deployment or installation, that really shouldn't be an issue. This is especially true for 'clients' vs 'customers', and the word client involves and on-going, personal relationship. If it comes to it, send them a CD. Then anything under 700Mb is all the same.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219068#2190683Answer by Tom for .NET 2.0 or 3.5?Tom2008-10-20T16:30:50Z2008-10-20T16:30:50Z<p>Check out LINQBridge:
<a href="http://www.albahari.com/nutshell/linqbridge.aspx" rel="nofollow">http://www.albahari.com/nutshell/linqbridge.aspx</a></p>
<p>Adding LINQ support to .net 2 (.net 3.5 still uses CLR 2.0).</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219071#21907136Answer by Gulzar for .NET 2.0 or 3.5?Gulzar2008-10-20T16:31:06Z2008-10-20T16:31:06Z<p>For taking advantage of LINQ, you need 3.5 (unless you want to use <a href="http://www.albahari.com/nutshell/linqbridge.aspx" rel="nofollow">LINQBridge</a> with 2.0).</p>
<p>For a smaller installer, .Net 3.5 <strong>Sp1</strong> has a new feature called "<a href="http://weblogs.asp.net/scottgu/archive/2008/05/12/visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx" rel="nofollow">Client Profile</a>".</p>
<p>The .NET Framework Client Profile setup contains just those assemblies and files in the .NET Framework that are typically used for client application scenarios. For example: it includes Windows Forms, WPF, and WCF. It does not include ASP.NET and those libraries and components used primarily for server scenarios. We expect this setup package to be about <strong>26MB</strong> in size, and it can be downloaded and installed much quicker than the full .NET Framework setup package.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219074#2190740Answer by Daok for .NET 2.0 or 3.5?Daok2008-10-20T16:32:20Z2008-10-20T16:32:20Z<p>I suggest you to go directly to 3.5 because you will be less far away (in the future ... in 3-5 years) to change to other version of framework. If in 5 year .Net is at version 5, the jump will be smaller to do. So, VB6 to 3.5 is what I suggest you.</p>
<p>The size of the framework is not very high, less than 60 megs... not a big deal now I think.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219107#2191070Answer by Adron for .NET 2.0 or 3.5?Adron2008-10-20T16:43:12Z2008-10-20T16:43:12Z<p>Also note, depending were you install the .NET framework it might be irrelevant how much extra bulk there is. The .NET Framework installs are relatively small in modern terms.</p>
<p>As for LINQ, it will save you a lot of time and effort, and offers a quick way to get at data. However it also depends on the clients the application will be distributed out to.</p>
<p>I'd say at that, go with 3.5 unless there is another major roadblock on the clients for whatever reason.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219114#2191142Answer by devio for .NET 2.0 or 3.5?devio2008-10-20T16:45:06Z2008-10-20T16:45:06Z<p>If it's a VB6 app, you should check which Windows versions the app is currently used on, and select the .Net version accordingly. AFAIK 3.5 does not run on W2K.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219116#2191160Answer by Scott Dorman for .NET 2.0 or 3.5?Scott Dorman2008-10-20T16:46:28Z2008-10-20T16:46:28Z<p>As others have pointed out, the .NET 3.5 install is longer and larger than .NET 2.0. Keep in mind that .NET 3.0 and .NET 3.5 are both extensions on top of the .NET 2.0 CLR.</p>
<p>I would still say upgrade from VB6 directly to .NET 3.5 (actually .NET 3.5 SP1) and VS2008, as long as your client operating systems support that version of the Framework (otherwise you will need to choose the lowest common Framework version, which very well may be .NET 2.0). You will save yourself a lot of time/effort in the long run.</p>
http://stackoverflow.com/questions/219051/net-2-0-or-3-5/219212#2192121Answer by Joshua Carmody for .NET 2.0 or 3.5?Joshua Carmody2008-10-20T17:18:55Z2008-10-20T17:18:55Z<p>Keep in mind that certain OSes (Windows 2000 Server) won't let you install .NET 3.0 or 3.5, so you may have to stick with 2.0 for that reason.</p>