出于好奇,因为它很容易解决:this documentation forDropDownListFor
says that optionLabel
can be null
. 但是,如果我在接到电话时尝试编译,optionLabel
则会出现模棱两可的错误,因为还有一种方法在同一位置采用 an 并且显然是模棱两可的。那么a)文档错误b)有一种方法可以编译并指定我的意思c)文档意味着一种不同的方法,可以在不引起调用的情况下出现模棱两可的错误?null
object
null
optionLabel
null
编辑:
我现在意识到,文档当然意味着optionLabel
作为字符串变量传递的情况,总是传递null
. 例如:
string optionLabel = null;
// Possibly do something with optionLabel
@Html.DropDownListFor(x => x.Name, selectList, optionLabel)