.NET 2.0 or 3.5? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:52:44Z http://stackoverflow.com/feeds/question/219051 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219051/net-2-0-or-3-5 13 .NET 2.0 or 3.5? Shawn 2008-10-20T16:27:02Z 2008-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#219056 1 Answer by Shahin for .NET 2.0 or 3.5? Shahin 2008-10-20T16:28:29Z 2008-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#219057 2 Answer by swilliams for .NET 2.0 or 3.5? swilliams 2008-10-20T16:28:32Z 2008-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#219060 0 Answer by Alexandre Brisebois for .NET 2.0 or 3.5? Alexandre Brisebois 2008-10-20T16:29:10Z 2008-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#219062 4 Answer by James Atkinson for .NET 2.0 or 3.5? James Atkinson 2008-10-20T16:29:21Z 2008-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#219064 2 Answer by Joel Coehoorn for .NET 2.0 or 3.5? Joel Coehoorn 2008-10-20T16:29:38Z 2008-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#219068 3 Answer by Tom for .NET 2.0 or 3.5? Tom 2008-10-20T16:30:50Z 2008-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#219071 36 Answer by Gulzar for .NET 2.0 or 3.5? Gulzar 2008-10-20T16:31:06Z 2008-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#219074 0 Answer by Daok for .NET 2.0 or 3.5? Daok 2008-10-20T16:32:20Z 2008-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#219107 0 Answer by Adron for .NET 2.0 or 3.5? Adron 2008-10-20T16:43:12Z 2008-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#219114 2 Answer by devio for .NET 2.0 or 3.5? devio 2008-10-20T16:45:06Z 2008-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#219116 0 Answer by Scott Dorman for .NET 2.0 or 3.5? Scott Dorman 2008-10-20T16:46:28Z 2008-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#219212 1 Answer by Joshua Carmody for .NET 2.0 or 3.5? Joshua Carmody 2008-10-20T17:18:55Z 2008-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>