I was watching a presentation today and there was a point brought up that I found really interesting. Say you have the following LINQ code: 1: int [] iArray = new int [] { 5, 4, 3, 2, 1, 0 }; 2: 3: IEnumerable< int > results = iArray.Select(i
Read More...