什么是这个C#Razor语法的VB.NET等价物?

时间:2011-11-29 14:25:42

标签: c# vb.net asp.net-mvc-3 razor

在Steven Sanderson的MVC 3书中,在p185的底部,下面的表达式用于呈现分页链接。

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

什么是VB.NET等价物?我被困在x url lambda位上。

1 个答案:

答案 0 :(得分:4)

在VB.NET中,lambda应该等同于:

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

有关VB.NET的更多信息,请参阅MSDN: