vote up 1 vote down star

What languages feature (1 per answer please) should be added to VB.NET in future versions?

Update: where possible provide links to examples of language feature as used elsewhere.

flag

8 Answers

vote up 6 vote down

A C#-style yield return statement. Lots of cool stuff is being done with custom IEnumerable iterators, and currently these are a pain to write in VB.NET...

link|flag
Will hopefully be added in the next version. – Konrad Rudolph Oct 1 '08 at 8:50
vote up 2 vote down

Support for multiline lambda expressions.

link|flag
Will be added in the next version. – Konrad Rudolph Oct 1 '08 at 8:47
vote up 0 vote down

C# has LINQ, SQL syntax embedded in C#.

VB needs 'LINC', Language INtegrated COBOL syntax :-)

Okay, kidding. I'm sure this will get like -5 for red herring.

link|flag
vote up 0 vote down

Action<T> support. See this.

link|flag
vote up 0 vote down

Map, Reduce, and MapReduce on the IEnumberable interface. We already have the ability to run delegates for the most common operations on enumerables, why don't we have a more generic version?

link|flag
vote up 0 vote down

Better IntelliSense for objects with events. When typing: "obj." the list of items should include the events without having to declare the object "with events" or having to do "addhandler".

link|flag
Why? I like this context-sensitive IntelliSense much better: only show the events if this is relevant in the current context. – Konrad Rudolph Oct 1 '08 at 8:47
vote up -1 vote down

Surrond code blocks with curly braces { }

link|flag
vote up -2 vote down

The ability to terminate statements with a semicolon.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.