Why is IntelliSense support for C# lacking when compared to VB.NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T12:52:37Zhttp://stackoverflow.com/feeds/question/1081471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081471/why-is-intellisense-support-for-c-lacking-when-compared-to-vb-net2Why is IntelliSense support for C# lacking when compared to VB.NET?Todd Stout2009-07-04T04:16:45Z2009-07-08T02:00:42Z
<p>For me, developing for the Java ecosystem payed the bills for many years. However, for several years now, I have been working primarily in the .Net space. Initially, my transition into the .Net world consisted of writing and maintaining VB.Net code. VS provided almost all of the nice intellisense support I came to expect after years of working with the Eclipse/Java combo. Eventually my employer decided to do new development in C#. My initial impression of the intellisense support for C# was less than stellar. At times it seems as if VS has no background compiler for C#, but occasionally it does something smart, indicating there is some background processing there, but not quite enough to really boost productivity in meaningful ways. Is there any sane technical reason for this discrepancy regarding intellisense support between the two languages?</p>
http://stackoverflow.com/questions/1081471/why-is-intellisense-support-for-c-lacking-when-compared-to-vb-net/1081482#10814821Answer by ChrisW for Why is IntelliSense support for C# lacking when compared to VB.NET?ChrisW2009-07-04T04:24:48Z2009-07-04T04:24:48Z<p>It (Intellisense for C#) works for me, very well IMO (though I've never run VB to cmompare it). Maybe there's some other thing wrong with your machine: for example maybe now you don't have enough RAM for whatever you're running, so everything's swapping and thus extremely slow?</p>
http://stackoverflow.com/questions/1081471/why-is-intellisense-support-for-c-lacking-when-compared-to-vb-net/1081626#108162610Answer by Ahmad Mageed for Why is IntelliSense support for C# lacking when compared to VB.NET?Ahmad Mageed2009-07-04T06:06:53Z2009-07-04T06:21:41Z<p>There has been a gap between C# and VB for awhile now. VB generates a lot of code for you. For example, hitting enter after finishing an "If" statement will automatically add the "Then" at the end of that line if you left it off, and close it off with the "End If" portion. In C# it's up to you to add those starting and closing {} curly braces.</p>
<p>VB has had background compilation long before C#. In fact, that was one of the major appealing factors of using ReSharper, which provided such functionality. However, as of VS 2008 / .NET 3.5 SP1 that all changed. You can read Scott Gu's post about that <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"><strong>here</strong></a>, but I'll paste the relevant part:</p>
<blockquote>
<p>"The C# code editor now identifies and
displays red squiggle errors for many
semantic code issues that previously
required an explicit compilation to
identify. For example, if you try to
declare and use an unknown type in the
C# code-editor today you won't see a
compile error until you do a build.
Now with SP1 you'll see live red
squiggle errors immediately (no
explicit compile required)."</p>
</blockquote>
<p>Using CodeRush or ReSharper definitely enhances the experience with the autocompletion of common statements which would make a VB developer feel like there has been a seamless transition.</p>
<p><strong>EDIT:</strong> more details below</p>
<p>That doesn't quite address technical concerns, but the development teams are different and didn't necessarily do the same thing. In other words, there's not likely to be a shared approach. <a href="http://www.panopticoncentral.net/archive/2004/02/25/276.aspx" rel="nofollow"><strong>This blog post</strong></a> excerpt, by a Technical Lead on the VB team, supports this:</p>
<blockquote>
<p>“Background compilation” is the
feature in VB that gives you a
complete set of errors as you type.
People who move back and forth between
VB and C# notice this, but VB-only
developers may not realize that other
languages such as C# don’t always give
you 100% accurate Intellisense and
don’t always give you all of the
errors that exist in your code. This
is because their Intellisense engines
are separate, scaled-down compilers
that don’t do full compilation in the
background. VB, on the other hand,
compiles your entire project from
start to finish as Visual Studio sits
idle, allowing us to immediately
populate the task list with completely
accurate errors and allowing us to
give you completely accurate
Intellisense.</p>
</blockquote>
<p>One final note is the <a href="http://channel9.msdn.com/posts/Charles/Luca-Bolognese-C-and-VBNET-Co-Evolution-The-Twain-Shall-Meet/" rel="nofollow"><strong>recent Channel9 interview</strong></a> with the Group PM of the C#/VB/F# team, Luca Bolognese, where he emphasized how the languages are no longer going to stray off in different directions and will begin to share their similarities. So it looks like the future holds great things!</p>
http://stackoverflow.com/questions/1081471/why-is-intellisense-support-for-c-lacking-when-compared-to-vb-net/1081657#10816570Answer by Chris for Why is IntelliSense support for C# lacking when compared to VB.NET?Chris2009-07-04T06:29:52Z2009-07-04T06:29:52Z<p>Intellisense is actually lacking in VB.NET vs C#. Try calling Dispose via intellisense on a class that inherits from disposable but does not directly implement it. It won't show up. There are many other examples that I cannot recall at this time, but basically, VB.NET hides most "advanced" members from intellisense. Hardly productive, and I get the feeling it implies that VB.NET developers are less knowledgeable about such "advanced" members. </p>