public ActionResult DoSomething()
{
return View("Index", new IndexModel { Foo = new List<string>() { "*" });
}
Index.cshtml には次を含むフォームがあります。@Html.HiddenFor(m => m.Foo)
public ActionResult ProcessForm(IndexModel model)
{
}
ProcessForm 内では、model.Foo に次のような単一の文字列が含まれています。
System.Collections.Generic.List`1[System.String]
私はとても混乱しています...