Skip to content

Instantly share code, notes, and snippets.

@andyyou
Created March 9, 2013 07:14
Show Gist options
  • Save andyyou/5123286 to your computer and use it in GitHub Desktop.
Save andyyou/5123286 to your computer and use it in GitHub Desktop.
Sample for comment
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcSample.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment