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
I have a VS2005 project that contains a couple web service references. The project
I have a solution that contains two projects. One project is an ASP.NET Web
I have a VS solution that contains 6 library projects and 1 web folder
I have a web project that I developed where one of the main functions
I have a web application project (wap) that is successfully being deployed to a
I'm starting a web project that likely should be fine with SQLite. I have
I have numerous Web Services in my project that share types. For simplicity I
I have a web application that comprises the following: A web project (with a
I have a really simple ASP.NET web application and a web setup project that

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.