URL の文字列配列を mvc controller に転送したいと考えています。
私のコントローラーメソッドは
public ActionResult Index(MyModel model)
そして、私は私のモデルが
public class TagEditRequestVM
{
public string ValueA { get; set; }
public List<string> MyList { get; set; }
}
それを呼び出すのに最適な URL 構造は何ですか?