Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Created December 4, 2013 10:19
Show Gist options
  • Save ThomasArdal/7785332 to your computer and use it in GitHub Desktop.
Save ThomasArdal/7785332 to your computer and use it in GitHub Desktop.
using System;
using System.Threading;
using System.Web.Mvc;
namespace MvcApplication1.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
var random = new Random();
Thread.Sleep(random.Next(2000));
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment