在我的控制器中,我有以下两种方法;
[ActionName("index")]
public ActionResult Index()
{
return View();
}
and
public ActionResult Index()
{
var m =MyMod();
return View(m);
}
即使我使用过,但[ActionName("index")]
我得到一个错误说Error 1 Type 'MyProject.Controllers.MyController' already defines a member called 'Index' with the same parameter types
我怎样才能防止这种情况?