vote up 0 vote down star

Is it possible to create anonymous delegates in vb.net version 8 or earlier? If so, could someone provide an example of the syntax? Thanks.

flag
I initially forgot to limit my question to pre-lamba vb - sorry. – ironsam Apr 7 at 21:06
Then, no you can't do it. – Joel Coehoorn Apr 7 at 21:09

2 Answers

vote up 3 vote down check

In VB 9.0 you can create single line lambda expressions

Dim del = Function (x) x + 42

In VB 10.0 (not yet released). You will be able to create both multiline function and sub routines (as well as single line subs). For example

Dim del = Function (x)
            Return x + 42
          End Funtion

EDIT OP clarified it was for pre- VB 9.0

No, there is no way prior to VB 9.0 to create lambda expressions / anonymous delegates in VB.

link|flag
Although it didn't answer the question, thanks for the info about VB10 anonymous delegates! – Meta-Knight Apr 8 at 4:14
vote up 2 vote down

Yes, but only in Visual Studio 2008/.Net 3.0 and later.

Use the Function keyword.

link|flag

Your Answer

Get an OpenID
or

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