我正在尝试将变量分配给扩展方法,但是当我将鼠标悬停在该行上时出现错误。
cannot assign 'void' to an implicitly-typed local variable
我正在检查空字段并调用我的扩展方法并想要检查多个字段,如果它们都失败了,我希望它们出现在一个错误框中而不是堆积起来。
if (drp_SelectGroup.SelectedValue == "0")
{
var message = this.ShowMessage("Select an Ethnic Group", "ERROR", ErrorType.error);
}
编辑*
public static void ShowMessage(this Page page, string message, string title, ErrorType err)
{
page.ClientScript.RegisterStartupScript(page.GetType(), "toastr",
String.Format("toastr.{0}('{1}','{2}');", err, message, title), addScriptTags: true);
}