ActionControllers.Example.Controllers.Home.Index.Get C# (CSharp) Method

Get() public method

public Get ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Get()
        {
            ViewBag.Message = "Welcome to ASP.NET MVC with Action Controllers!";

            return View();
        }
Index