public ActionResult TestAction()
{
var otherController = DependencyResolver.Current.GetService<另一個控制器的類名>();
var result = otherController.另一個動作方法(); //Action 調用
var value= otherController.方法(); //方法調用
var statictValue = 另一個控制器的類名.靜態方法() //靜態方法調用
return result;
}