Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • I ♥ List<>

    Anyone like List<>? Since I've been writing LINQ in my apps, i've got right into using them wherever possible. You can fill them up with your custom objects, select, sort, the lot public class TimzObject { private string _Name; private int _Age; public string Name { get { return _Name; } } public...
    Posted to Tim Hustler (Weblog) by hoonius on 06-17-2008, 12:00 AM
    Filed under: IEnumerable, List<>, LINQ, C#
  • How to get an indexed item of an IEnumerable object (Linq)

    If you have an IEnumerable<T> collection of some objects T and you need to get a particular item out of that collection, you cannot use the standard indexing that you would normally use with brackets ([index]).  If you try you will get an error such as: Cannot apply indexing with [] to an...
    Posted to Jeff Widmer's Blog (Weblog) by Jeff Widmer on 01-29-2010, 12:00 AM
    Filed under: .NET, C#, IEnumerable, Linq, System.Collections.Generic
Page 1 of 1 (2 items)