Why do some .NET Framework classes not use Generics when they could?
- by Chris Dwyer
Example:
System.Web.Security.MembershipCollection implements IEnumerable and not IEnumberable<T>. Why doesn't it implement the latter, when it seems that it would be better (e.g. use LINQ)?
Or, is it not necessarily better?