public ActionResult TestAction()
{
var otherController = DependencyResolver.Current.GetService<另一个控制器的类名>();
var result = otherController.另一个动作方法(); //Action 调用
var value= otherController.方法(); //方法调用
var statictValue = 另一个控制器的类名.静态方法() //静态方法调用
return result;
}