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 958495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:52:33+00:00 2026-05-16T00:52:33+00:00

We have a web project that contain its business methods in a class library

  • 0

We have a web project that contain its business methods in a class library project called “Bll.dll”
some methods of Bll.dll return List<> …
from a source – that i don’t remember now – told that returning Collection<> is better than returning List<>
Is it a valid ?
Note that i don’t make any process on values returned from BLL methods .. just view it in a web page

  • 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-16T00:52:34+00:00Added an answer on May 16, 2026 at 12:52 am

    Collection<T> is implemented, IIRC, as a wrapper around an IList<T>, of which the default implementation is List<T>. Therefore a Collection<T> has at least one more abstraction than a List<T>, but in general this won’t be a bottleneck. In fact, you might consider returning IList<T>.

    Edit: here is the constructor of Collection<T>, courtesy of reflector:

    public Collection()
    {
        this.items = new List<T>();
    }
    

    so indeed, this wraps a layer of abstraction. The plus side of this is that you can add your own validation etc by subclassing Collection<T> (which is not possible when using List<T> directly or via subclassing, since there are no interesting virtual methods).

    The other thing to consider is that they will have the same overall performance in terms of “O” (assuming you use the default List<T> implementation). Indexer lookup will be O(1), etc

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

Sidebar

Related Questions

I have an asp.net mvc project that uses some search methods in a seperate
For example, I have a document library that hold contracts for multiple projects. So:
I'm investigating an asp.net web application that extensively uses User Controls on each page.
Essentially I want to embed some XHTML in an XML document that must validate
How do I set up a Git project to contains other projects? eg. I
I was trying to add the XML schema to an existing EJB project. JAXB
I'm new to DDD and am thinking about using this design technique in my
There is a website with a master-page, set of css-files,... menus. It is necessary
With Visual stuido 2010, it's simple to set up SL4 to debug with 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.