VB中匿名类型的语法是什么?

时间:2008-12-17 17:06:22

标签: vb.net syntax anonymous-types

我正在尝试设置htmlAttribute属性,但我无法找出正确的语法

这是它在c#

中的工作原理
<%=Html.Password("myPassword", 50,"",new { style = "width:100px" })%><br />

的vb.net版本是什么
new { style = "width:100px" }

1 个答案:

答案 0 :(得分:6)

VB中内联匿名类型的正确语法是:

New With { .Style = "width:100px" }

如果要声明匿名类型,请使用以下语法:

Dim myVariable = New With { .Style = "width:100px" }