public static class ListExtensions {

        public static string RenderList<T>(this HtmlHelper helper, IEnumerable<T> list,
...

C# On ASP.NET MVC List Helper

by jmcd, August 24, 2010 08:47

Not quite a pattern matchin...

493e6c6fc3f24eb73295548cfd136574 Talk
using System;
    using System.Collections.Generic;
    using System.Linq;
...

C# ASP.NET MVC List Helper

by jmcd, August 18, 2010 20:42, 6 refactorings, tagged with C#, asp.net-mvc

The idea behind this helper...

493e6c6fc3f24eb73295548cfd136574 Talk