AspNetFrameworksPerformance.Controllers.MvcPerformanceController.HelloWorldCode C# (CSharp) Method

HelloWorldCode() public method

public HelloWorldCode ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult HelloWorldCode()
        {
            return new ContentResult()
            { Content = "Hello World. Time is: " + DateTime.Now.ToString() };
        }