One other feature I'm liking in VB is that you can omit the trailing select clause in a query. That is, you can simply say this: From ch In "Hello" Where ch <> "H" which in C# would look like this: from ch in "Hello" where ch != 'H' select ch
Similar Posts
Over the last two months I've published a series of posts covering some of the new language features that are coming as part of the Visual Studio and
In this post, I'm going to take a look at how SQL Server handles subqueries in CASE expressions. I'll also introduce some more exotic join functionality
There's no doubt that LINQ is one of the headline features of Visual Studio Orcas. I've been trying out some LINQ queries; it's a very interesting new
Last week I started the first in a series of blog posts I'll be making that cover some of the new VB and C# language features that are coming as part of