Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 334797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:05:19+00:00 2026-05-12T10:05:19+00:00

I keep hearing that in .net 3.5 you should use IEnumerable over a List,

  • 0

I keep hearing that in .net 3.5 you should use IEnumerable over a List, but I can’t find any reference materials or articles that explain why it’s so much more proficient. Does anyone know of any content that explains this?

The purpose of asking this question is to get a better understanding of what IEnumerable is doing under the hood. If you can provide me with any links I will do the research and post an answer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:05:19+00:00Added an answer on May 12, 2026 at 10:05 am

    IEnumerable<T> is an interface that is implemented by List<T>. I suspect the reason you’re hearing that IEnumerable<T> should be used is because it’s a less constrictive interface requirement.

    For example, consider the following method signature:

    void Output(List<Foo> foos) 
    { 
        foreach(var foo in foos) { /* do something */ }
    }
    

    This method requires that it be passed a concrete implementation of a List. But it’s just doing something in-order. It doesn’t really need random access or any of the other things that a List<T> or even an IList<T> give it. Instead, the method should accept an IEnumerable<T>:

    void Output(IEnumerable<Foo> foos) 
    { 
        foreach(var foo in foos) { /* do something */ }
    }
    

    Now we’re using the most general (least specific) interface that supports the operations that we need. This is a fundamental aspect of OO-design. We’ve decreased coupling by requiring only what we need, and not a whole lot else besides. We’ve also created a more flexible method because the foos parameter might be a Queue<T>, a List<T>, anything that implements IEnumerable<T>. We aren’t forcing the caller to convert their data structure to a List unnecessarily.

    So it isn’t that IEnumerable<T> is more efficient than list in a “performance” or “runtime” aspect. It’s that IEnumerable<T> is a more efficient design construct because it’s a more specific indication of what your design requires. (Though this can lead to runtime gains in specific cases.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

One thing that I keep hearing in reference to ASP.NET and MSFT technologies is
I keep hearing that div tags should be used for layout purposes and not
I keep hearing that catch (Exception ex) Is bad practise, however, I often use
i keep hearing that i shouldn't be using primary keys in my asp.net mvc
I keep hearing that the server side ASP .NET AJAX controls (like UpdatePanels) are
I keep hearing that Lisp is a really productive language, and I'm enjoying SICP
I keep hearing people complaining that C++ doesn't have garbage collection. I also hear
What is some good software that is written with WPF? I keep hearing about
I keep hearing from associates about grid computing which, from what I can gather,
I keep hearing a lot about functors in C++. Can someone give me an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.