ActionResult Return Type in MVC
ActionResult Return Type When we create an Action method in the controller so ActionResult is the return type of method public class LearnController: Controller { // GET: Learn public ActionResult Index() { ViewBag.Title = "Learn Controller"; ...