vote up 3 vote down star
1

With ASP.NET MVC 1.0, .NET 3.5 and C# you can easily pass a method a lambda expression that will do a "Response.Write" some content when it's executed within the method:

<% Html.SomeExtensionMethod(
    () => { <%
        <p>Some page content<p>
    %> }
) %>

The method signature is similar to this:

public void SomeExtensionMethod(this HtmlHelper helper, Action pageContent)
{
    pageContent();
}

Does anyone know how to peforma a similar call using Lambda expressions in VB.NET using the same method signature shown above?

I've tried the following in VB.NET, but it wont work:

<% Html.SomeExtensionMethod(New Action( _
    Function() %> <p>Some Content</p> <% _
    )) %>

I get an exception saying "Expression Expected."

Can anyone help me with what I'm doing wrong? How do you do this in VB.NET?

flag

use reflector. [who doesn't hate char count limit] – Itay Oct 28 at 16:57
Wondering - what's the use case of such a method? What exactly you are trying to achieve? – Arnis L. Oct 28 at 17:05
This comes in very handy with ASP.NET MVC. – Chris Pietschmann Oct 28 at 17:12
This is also a very simplified use case, not the full usage scenario. – Chris Pietschmann Oct 29 at 15:37

1 Answer

vote up 3 vote down check

VB.NET 9.0 doesn't support multi-statement lambda expressions or anonymous methods. It also does not support lambda expression that does not return a value meaning that you cannot declare an anonymous function of type Action.

Otherwise this works but is meaningless because the lambda does nothing:

<% Html.SomeExtensionMethod(New Action(Function() "<p>Some Content</p>"))%>

Now let's take your example:

<% Html.SomeExtensionMethod(New Action( _
    Function() %> <p>Some Content</p> <% _
)) %>

Should be translated to something like this:

Html.SomeExtensionMethod(New Action(Function() Html.ViewContext.HttpContext.Response.Write("<p>Some Content</p>")))

which doesn't compile in VB.NET 9.0 because your expression doesn't return a value.

In VB.NET 10 you will be able to use the Sub keyword:

Html.SomeExtensionMethod(New Action(Sub() Html.ViewContext.HttpContext.Response.Write("<p>Some Content</p>")))

which will compile fine.

link|flag
What about ASP.NET 4.0? – Chris Pietschmann Oct 28 at 17:13
this is not true in 3.5 and 4.0. VB has support for lambdas in the newer versions of ASP.NET – Jason Oct 28 at 17:15
Jason, How do you do this in 3.5 or 4.0? – Chris Pietschmann Oct 28 at 17:16
1  
@Jason, I didn't say that VB.NET does not support lambda expressions. I say that currently (VB.NET 10) does not support multi-statement lambda expressions. – Darin Dimitrov Oct 28 at 17:26
1  
It seems that this is one way that C# is superior to VB.NET – Chris Pietschmann Oct 28 at 20:36
show 2 more comments

Your Answer

Get an OpenID
or

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