Top "Ienumerable" questions

IEnumerable, and its generic counterpart IEnumerable<T> are .NET interfaces for iterating (or enumerating) through a collection of items.

Chart of IEnumerable LINQ equivalents in Scala?

Possible Duplicate: LINQ analogues in Scala I am looking for chart which shows equivalents in Scala of LINQ methods for …

c# linq scala ienumerable iterable
How to convert IEnumerable<IEnumerable<T>> to List<string>?

I really don't understand this T thing yet. I need to convert below result to List private void generateKeywords_Click(…

c# linq ienumerable tolist
Cannot apply indexing with [] to an expression of type 'object' (even though the type is 'dynamic')

I have an ExpandoObject which is created like so: public ExpandoObject Get() { var expando = new ExpandoObject(); var expandoDic = (IDictionary<…

c# dynamic ienumerable icollection expandoobject
Why does adding a list to another list, using add range, remove the elements from the first list?

Consider the following example: IEnumerable<Int32> groupsToAdd = new List<Int32>(); List<Int32> groups1 = new …

c# linq ienumerable addrange
C#: 'IEnumerable<Student>' does not contain a definition for 'Intersect'

It's been long since I write a single line of code so, please, be patient if I am asking a …

c# linq ienumerable generic-collections
Should I return an IEnumerable or IList?

I wish to return an ordered list of items from a method. Should my return type be IEnumerable or IList?

c# collections ienumerable
Why can i not cast an IEnumerable<T> list to a BindingList<t>?

Is it possible to cast an IEnumerable list to a BindingList collection? The IEnumerable list is a list of typed …

c# ienumerable bindinglist
Differences when using IEnumerable and IQueryable as a type of ObjectSet

As I understand it when I use LINQ extension methods (with lambda expression syntax) on IQueryable that is in the …

c# .net entity-framework ienumerable iqueryable
ASP.NET MVC, passing Model from View to Controller

I'm having trouble with ASP.NET MVC and passing data from View to Controller. I have a model like this: …

asp.net-mvc controller ienumerable html.beginform
Implementing IEnumerable on a tree structure

Based on the work of these guys: http://dvanderboom.wordpress.com/2008/03/15/treet-implementing-a-non-binary-tree-in-c/ http://www.matthidinger.com/archive/2009/02/08/asp.net-mvc-recursive-treeview-helper.aspx …

c# collections tree ienumerable treenode