vote up 4 vote down star

I'm trying to use lambdas in some VB.Net code, essentially I'm trying to set a flag when databound is called.

Simplified it looks like this:

Dim dropdownlist As New DropDownList()
dropdownlist.DataSource = New String() {"one", "two"}
Dim databoundCalled As Boolean = False
AddHandler dropdownlist.DataBound, Function(o, e) (databoundCalled = True)
dropdownlist.DataBind()

My understanding is that the databoundCalled variable should be set to true, clearly I'm missing something as the variable always remains false.

What do I need to do to fix it?

flag

62% accept rate
I wouldn't be surprised if your simplification has removed the problem. Could you post a short but complete program which demonstrates the problem? – Jon Skeet Jun 10 at 8:12
The code I've posted does show the problem. – ilivewithian Jun 10 at 8:31

3 Answers

vote up 2 vote down check

Lambdas in vb.net ALWAYS are expressions , what your lambda expression is doing is basically saying does databoundCalled = True or (databoundCalled == True) if your a c# guy , not set databoundCalled = True

link|flag
Very helpful, thanks (yes I'm from a C# background) – ilivewithian Jun 10 at 15:06
VB.Net Lambdas can evaluate to any value, not just true or false. Take the following Function() 42 – JaredPar Jun 11 at 3:23
You are right, in the case where there is no equals operator – Ori Jun 11 at 7:43
vote up 5 vote down

After looking over your code and scratching my head, I found a solution that works. Now, why this works over what you have, I am not clear. Maybe this will at least help you in the right direction. The key difference is I have a method that sets the value to true/false. Everything else is the same.

Here is my entire web project code:

Partial Public Class _Default
    Inherits System.Web.UI.Page

    Dim databoundCalled As Boolean = False
    Dim dropdownlist As New DropDownList()

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Response.Write(databoundCalled)
        Bind()
        Response.Write(databoundCalled)

    End Sub

    Sub Bind()
        AddHandler dropdownlist.DataBound, Function(o, e) (SetValue(True))

        dropdownlist.DataSource = New String() {"one", "two"}
        dropdownlist.DataBind()
    End Sub

    Function SetValue(ByVal value As Boolean) As Boolean
        databoundCalled = value
        Return value
    End Function
End Class

I hope this helps!

link|flag
@orialmog Yes you are right, vb.net lambda will evaluate to a true/false (That is the part I could not remember off the top of my head initially). Which is why the variable did not get set, and why he needs to use a function to set his variable. – Jason Heine Jun 10 at 13:02
Thanks for the example, very helpful. – ilivewithian Jun 10 at 15:06
vote up 1 vote down

The problem is how lambdas are interpreted. In VS2008 a Function lambda is always interpreted as an expression and not a statement. Take the following block of code as an example

Dim x = 42
Dim del = Function() x = 32
del()

In this case, the code inside the lambda del is not doing an assignment. It is instead doing a comparison between the variable x and the value 32. The reason why is that VB has no concept of an expression that is an assignment, only a statement can be an assignment in VB.

In order to do an assignment in a lambda expression you must have statement capabilities. This won't be available until VS2010 but when it is you can do the following

Dim del = Function()
           x = 32
          End Function

Essentially anything that is not a single line lambda is interpreted as a statement.

link|flag

Your Answer

Get an OpenID
or

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