Skip to content

Instantly share code, notes, and snippets.

@brooklynDev
Created February 15, 2012 20:35
Show Gist options
  • Save brooklynDev/1838825 to your computer and use it in GitHub Desktop.
Save brooklynDev/1838825 to your computer and use it in GitHub Desktop.
public class HomeController : Controller
{
public ActionResult Index()
{
var person = new Person { FirstName = "John", LastName = "Doe", Age = 30 };
ViewBag.NGon.Person = person;
return View();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment