Moving from vb.NET (2003) to vb2005 What are some of the benefits? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:11:12Z http://stackoverflow.com/feeds/question/212289 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits 2 Moving from vb.NET (2003) to vb2005 What are some of the benefits? WACM161 2008-10-17T14:08:19Z 2008-12-28T15:43:22Z <p>We are changing from vs2003 to vs2005 and use vb as our primary language, I am looking for some of the changes to VB that will be helpful in our ASP.NET development. Can someone point me to a list (maybe from microsoft?) or provide some of their favaorite differences between the two versions?</p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212294#212294 1 Answer by nportelli for Moving from vb.NET (2003) to vb2005 What are some of the benefits? nportelli 2008-10-17T14:09:46Z 2008-10-17T14:09:46Z <p>Better IDE for one. </p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212309#212309 1 Answer by Mendelt for Moving from vb.NET (2003) to vb2005 What are some of the benefits? Mendelt 2008-10-17T14:11:50Z 2008-10-17T14:11:50Z <p>I found the biggest improvements from .Net 1.1 to 2.0 were generics and yield return for easy implementation of ienumerables.</p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212311#212311 5 Answer by Will for Moving from vb.NET (2003) to vb2005 What are some of the benefits? Will 2008-10-17T14:12:13Z 2008-10-17T14:12:13Z <p>WHOA! Not so fast there, buddy! What's the rush? Relax, guy. Give it a few more years.</p> <p>Any .NET developer not working version 3.5 of the framework is just wasting time. Every single bit of it... Linq, WPF, lambdas, WCF, <strong>GENERICS</strong>, I could go on... Every SINGLE bit of it is gold. I'd rather play on a highway than target 1.1. Its like night and day.</p> <p>Do yourself and your team a favor... Skip 2k5 and hit 2k8. </p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212315#212315 5 Answer by Torbjørn for Moving from vb.NET (2003) to vb2005 What are some of the benefits? Torbjørn 2008-10-17T14:12:51Z 2008-10-17T14:12:51Z <p><a href="http://msdn.microsoft.com/en-us/library/we86c8x2(VS.80).aspx" rel="nofollow">What's new in VB 2005 (from MS)</a></p> <p><a href="http://www.code-magazine.com/Article.aspx?quickid=0505051" rel="nofollow">The same topic covered in Code Magazine</a></p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212330#212330 4 Answer by John Rudy for Moving from vb.NET (2003) to vb2005 What are some of the benefits? John Rudy 2008-10-17T14:15:43Z 2008-10-17T14:15:43Z <p>From a language perspective, the addition of <a href="http://msdn.microsoft.com/en-us/library/w256ka79(VS.80).aspx" rel="nofollow">Generics</a> and <a href="http://dotnetdud.blogspot.com/2008/04/nullable-type-in-visual-basicnet.html" rel="nofollow">Nullable types</a> (<a href="http://www.vbdotnetheaven.com/UploadFile/PashuSX/NullableTypes12122006000056AM/NullableTypes.aspx" rel="nofollow">second link</a>) (built on Generics) was a pretty compelling story for my work. The <a href="http://msdn.microsoft.com/en-us/vbasic/ms789188.aspx" rel="nofollow">My namespace</a> provides VB developers with quite a few shortcuts into "somewhat" more complicated features of the system.</p> <p>From an ASP.NET perspective, even though they weren't VB-specific, the addition of the <a href="http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx" rel="nofollow">Master Page</a> framework and <a href="http://msdn.microsoft.com/en-us/library/yh26yfzy.aspx" rel="nofollow">MembershipProvider</a> architecture were also very valuable.</p> <p>Here's a fairly comprehensive <a href="http://msdn.microsoft.com/en-us/library/88fx1xy0(VS.80).aspx#newinlangandtech" rel="nofollow">list from Microsoft</a> of all the Visual Studio 2005, language and major .NET framework changes.</p> <p>For what it's worth, you might consider just jumping over 2005 and right into 2008, with .NET 3.5.</p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212343#212343 3 Answer by notandy for Moving from vb.NET (2003) to vb2005 What are some of the benefits? notandy 2008-10-17T14:19:51Z 2008-10-17T14:19:51Z <p>Rick Strahl takes stock of the major changes and provides a personal perspective on some of the <a href="http://www.simple-talk.com/dotnet/asp.net/asp.net-2.0-and-vs-2005---you-win-some,-you-lose-some/" rel="nofollow">highs and lows</a>.</p> <p>.NET 1.1 to .NET 2.0 Migration <a href="http://blogs.msdn.com/peterlau/archive/2006/05/11/595294.aspx" rel="nofollow">Article 1</a> <a href="http://articles.techrepublic.com.com/5100-10878_11-6139045.html" rel="nofollow">Atricle 2</a></p> http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits/212404#212404 0 Answer by Mitchel Sellers for Moving from vb.NET (2003) to vb2005 What are some of the benefits? Mitchel Sellers 2008-10-17T14:33:43Z 2008-10-17T14:33:43Z <p>I personally find some of the IDE changes to be of the best benefit.</p> <ul> <li>The fact that the designer DOESN'T re-format your code as it feels like it</li> <li>The fact that standard layout is DEFAULT rather than grid layout</li> <li>Improvements in intellesence</li> </ul> <p>In addition to the IDE changes, if I had to pick 1 .NET 2.0 thing that is a huge helper I would say generics.</p>