Visual Studio 2010 Beta 1 shows some leg

04.06.2009

The Visual Basic and C# languages have both evolved in nice ways and nearly achieved feature parity. Visual Basic now has lambda expressions and implicit line continuations; C# now has simplified COM calling and dynamic language support. Both have a new feature called type equivalence that simplifies deployment against different versions of an assembly, which is especially useful when trying to program against the Microsoft Office APIs. (Lambda expressions are anonymous inline functions or methods; in the .Net Framework they are used as a concise way to define delegates, and they're very useful when writing LINQ queries.)

F# is a functional programming language based on ML and OCAML, which uses the .Net Framework and interoperates with other .Net languages. F# was previously a research project; it's very nice to see it as part of Visual Studio 2010.

[ Microsoft Visual Studio 2008 was the InfoWorld Test Center's pick for . See the rest of the . ]

One of my constant annoyances with Visual Studio 2008 has been its half-baked JavaScript parsing and IntelliSense. More times than I could count, it "helpfully" completed my code with irrelevant nonsense. Microsoft calls the VS2010 version "dramatically improved" and "2 to 5 times faster." That isn't actually saying much, considering how bad IntelliSense for JavaScript was before, but the improvement is certainly welcome, and in fact the JavaScript support is pretty good.

When working with big Visual C++ projects, I used to dread making changes to core header files; it would nearly always force me to take a break while the IDE caught up. The IDE is now smarter about parsing files in the background.