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

  • SEARCH
  • Home
  • 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 135765
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:50:32+00:00 2026-05-11T06:50:32+00:00

Is there any reason to expose an internal collection as a ReadOnlyCollection rather than

  • 0

Is there any reason to expose an internal collection as a ReadOnlyCollection rather than an IEnumerable if the calling code only iterates over the collection?

class Bar {     private ICollection<Foo> foos;          // Which one is to be preferred?     public IEnumerable<Foo> Foos { ... }     public ReadOnlyCollection<Foo> Foos { ... } }   // Calling code:  foreach (var f in bar.Foos)     DoSomething(f); 

As I see it IEnumerable is a subset of the interface of ReadOnlyCollection and it does not allow the user to modify the collection. So if the IEnumberable interface is enough then that is the one to use. Is that a proper way of reasoning about it or am I missing something?

  • 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. 2026-05-11T06:50:33+00:00Added an answer on May 11, 2026 at 6:50 am

    More modern solution

    Unless you need the internal collection to be mutable, you could use the System.Collections.Immutable package, change your field type to be an immutable collection, and then expose that directly – assuming Foo itself is immutable, of course.

    Updated answer to address the question more directly

    Is there any reason to expose an internal collection as a ReadOnlyCollection rather than an IEnumerable if the calling code only iterates over the collection?

    It depends on how much you trust the calling code. If you’re in complete control over everything that will ever call this member and you guarantee that no code will ever use:

    ICollection<Foo> evil = (ICollection<Foo>) bar.Foos; evil.Add(...); 

    then sure, no harm will be done if you just return the collection directly. I generally try to be a bit more paranoid than that though.

    Likewise, as you say: if you only need IEnumerable<T>, then why tie yourself to anything stronger?

    Original answer

    If you’re using .NET 3.5, you can avoid making a copy and avoid the simple cast by using a simple call to Skip:

    public IEnumerable<Foo> Foos {     get { return foos.Skip(0); } } 

    (There are plenty of other options for wrapping trivially – the nice thing about Skip over Select/Where is that there’s no delegate to execute pointlessly for each iteration.)

    If you’re not using .NET 3.5 you can write a very simple wrapper to do the same thing:

    public static IEnumerable<T> Wrapper<T>(IEnumerable<T> source) {     foreach (T element in source)     {         yield return element;     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any reason why I should pick JSON over XML, or vice-versa if
Is there any reason to prefer one of the following notations over the others
Is there any reason not to use the bitwise operators &, |, and ^
Is there any reason something like this would not work? This is the logic
Is there any reason to use a varchar field instead of a date field
Is there any reason to start a GUI program (application for Windows) written in
Is there any reason for the use of 'T' in generics? Is it some
Is there any reason to prefer a CharBuffer to a char[] in the following:
Is there any reason to prefer unicode(somestring, 'utf8') as opposed to somestring.decode('utf8') ? My
Is there any reason not to set up the install so that major upgrade

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.