show/hide this revision's text 2 fixed grammar

asp.net mvc redirecttoaction("Index"RedirectToAction("Index") vs Index()

show/hide this revision's text 1

asp.net mvc redirecttoaction("Index") vs Index()

Say I have a controller with an Index Method and a Update Method. After the Update is done I want to redirect to Index(). Should I use return RedirectToAction("Index") or can I just call return Index()? Is there a difference?

public ActionResult Index()
{
  return View("Index", viewdata);
}

public ActionResult Update()
{
  // do updates
  return RedirectToAction("Index"); or
  return Index();
}