asp net mvc 5 return view from another controller

Code Example - asp net mvc 5 return view from another controller

                
                        Return RedirectToRoute("Stuff");
                    
                
 

mvc return view from different controller

                        
                                return View("~/Views/SomeThing/Index.cshtml");
return View("~/Views/SomeThing/Index.cshtml",model);
                            
                        
 

return view mvc

                        
                                public ActionResult SomeAction()
{
    ...
    return RedirectToAction("SomeAction", "SomeController");
}