I have been watching few videos on LINQ nowadays and most of the demo code in those videos is written in VB.NET.
I noticed that there is a big intellisense support for VB.NET LINQ Query Expressions. For instance, when you write:
var query = from c in db.customers
Then press <enter> key a list of the other operators that we can use like “where, order by, select” are shown in a small intellisense window! Is this powerful intellisense present in C#? I am working now on VS 2008 Beta 2, and I still cannot see this intellisense! Is it present there and I am unable to find it out, or is it missing from C#?
Thanks,
Tags: