简体   繁体   中英

What is the VB.NET equivalent of this C# Razor syntax?

In the MVC 3 book by Steven Sanderson on p185 at the bottom, the following expression is used to render the paging links.

@Html.PageLinks(Model.Paginginfo, x=> Url.Action("List", new {page = x}))

What is the VB.NET equivalent? I am stuck on the x url lambda bit.

In VB.NET the lambda should be equivalent to this:

Function(x) Url.Action("List", New With { .Page = x })

You can refer to MSDN for more information about VB.NET's:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM