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 вашей модели. Foo содержит одну строку, которая гласит:
System.Collections.Generic.List`1[System.String]
Я так растерялся ...