About 62,400 results
Open links in new tab
  1. What does 'enumerable' mean? - Software Engineering Stack …

    What does 'enumerable' mean? Ask Question Asked 12 years, 7 months ago Modified 12 years, 7 months ago

  2. Is there a difference between iterable and enumerable?

    Nov 9, 2013 · 19 Many languages seem to have structures that are very similar called iterable or enumerable. These are structures that can be iterated or enumerated over, which seem to me …

  3. Relation and difference between recursively enumerable …

    Sep 30, 2016 · a recursively enumerable language a set of inputs to a Turing Machine for it to recognize Yes, in fact, the recursively enumerable languages are also known as the Turing …

  4. c# - Detecting IEnumerable "State Machines" - Software …

    I just read an interesting article called Getting too cute with c# yield return It made me wonder what the best way is to detect whether an IEnumerable is an actual enumerable collection, or if …

  5. array - What's the use of .Any () in a C# List<>? - Software ...

    Sep 5, 2015 · Keep in mind that Any doesn't operate on a List; it operates on an IEnumerable, which represents a concrete type that may or may not have a Count property. It's true that it's …

  6. Why should I use List<T> over IEnumerable<T>?

    In my ASP.net MVC4 web application I use IEnumerables, trying to follow the mantra to program to the interface, not the implementation. Return IEnumerable(Of Student) vs Return New …

  7. c# - Style for creating IEnumerable unions - Software Engineering …

    There isn't any cool LINQ sugar for creating unions. The Enumerable.Union() method is usually called like this: var bigList = list1.Union(list2); The alternative is to call Enumerable.Union() whic...

  8. Loop pattern for batch data processing - Software Engineering …

    Mar 28, 2022 · That being said, the underlying method aggregating the yield return ed enumerable is still going to end up having to do something along the lines of: MyBatch batch = …

  9. c# - Is it unreasonable to expect Any () *not* to throw a null ...

    Sep 18, 2018 · Not every .NET language supports extension methods. You can always call Enumerable.Any(null) and there you definitely expect ArgumentNullException. It's the same …

  10. Is implementing IEnumerable required to use foreach on collections?

    Similarly, List<T>, ConcurrentQueue<T>, etc. implement IEnumerable and Enumerable<T>. So when you say that: And also , arrays are working without implementing IEnumerable. this is …