vote up 1 vote down star
2

Is it possible to create an inline delegate in vb.net like you can in c#?

For example, I would like to be able to do something inline like this:

myObjects.RemoveAll(delegate (MyObject m) { return m.X >= 10; });

only in VB and without having to do something like this

myObjects.RemoveAll(AddressOf GreaterOrEqaulToTen) 

Private Function GreaterOrEqaulToTen(ByVal m as MyObject)
    If m.x >= 10 Then 
         Return true
    Else
         Return False
    End If
End Function

-- edit -- I should have mentioned that I am still working in .net 2.0 so I won't be able to use lambdas.

flag

3 Answers

vote up 4 vote down check
myObjects.RemoveAll(Function(m As MyObject) m.X >= 10)

See Lambda Expressions on MSDN

link|flag
vote up 2 vote down

Try:

myObjects.RemoveAll(Function(m) m.X >= 10)

This works in 3.5, not sure about the 2.0 syntax.

link|flag
Bugger! I was too slow.. :( – BlackMael Dec 9 '08 at 5:00
indeed but your superior type casting trumps me – Shawn Simon Dec 9 '08 at 5:00
Strictly speaking it isn't required but for myself, it is a little more readable since I don't have to think about what "m" is – BlackMael Dec 9 '08 at 5:06
vote up 0 vote down

Yeah, This example is really good. But Will I get some of the exercise questions in Delegates?

link|flag

Your Answer

Get an OpenID
or

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