Tuesday, July 14, 2009
Thursday, July 9, 2009
Friday, July 3, 2009
Saturday, June 27, 2009
Summary of interfaces in 3.5 .NET framework IEnumerable, IQueryable and IList
IEnumerable - supports being used in a foreach statement and that's about it.
IQueryable - supports further filtering, paging, etc. Does not support random access via an indexer. Implements IEnumerable
IList - supports random access via an indexer. does not support further filtering. Implements IEnumerable
IQueryable - supports further filtering, paging, etc. Does not support random access via an indexer. Implements IEnumerable
IList - supports random access via an indexer. does not support further filtering. Implements IEnumerable
Friday, June 26, 2009
Subscribe to:
Posts (Atom)