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
using System;
using System.Collections.Generic;
using System.Linq;
...
C# ASP.NET MVC List Helper
The idea behind this helper...
Not quite a pattern matchin...