我正在尝试掌握 ASP MVC4,但我在 .cshtml 文件中的 @{...} 中遇到了这个问题:
@Html.DropDownListFor(x => x.WillAttend, new[] {
new SelectListItem() {
Text = "Yes, I'll be there",
Value = bool.TrueString},
new SelectListItem() {
Text = "No, I can't come",
Value = bool.FalseString}
}, "Choose an option")
Q1)这是什么东西:new[]{...}
Q2)我说的对吗,对于剃刀来说,大括号内的东西就是任何 C# 代码。
谢谢。