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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T12:37:41+00:00 2026-06-16T12:37:41+00:00

string[] _myStrings = { Hello, There, Happy, Day }; public IEnumerable<string> MyStrings1 { get

  • 0
string[] _myStrings = { "Hello", "There", "Happy", "Day" };

public IEnumerable<string> MyStrings1
{
    get
    {
        return new System.Collections.ObjectModel.ReadOnlyCollection<string>(_myStrings);
    }
}

public IEnumerable<string> MyStrings2
{
    get
    {
        return from s in _myStrings select s;
    }
}

I have seen some discussion about not using arrays for public properties.
I have been using the MyStrings2 Convention. Is there some reason I should be using MyStrings1 instead?

  • 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-06-16T12:37:43+00:00Added an answer on June 16, 2026 at 12:37 pm

    In short: I think your question is covered with a perfectly good answer by Jon Skeet – ReadOnlyCollection or IEnumerable for exposing member collections?

    In addition:
    You can just emulate AsReadOnly():

    public ReadOnlyCollection<Abc> List
    {
        get { return new ReadOnlyCollection(list); }
    }
    

    UPDATE:
    This doesn’t create a copy of list. ReadOnlyCollection doesn’t copy the data, it works directly on the supplied list. See documentation:

    A collection that is read-only is simply a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.

    This constructor is an O(1) operation.

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

Sidebar

Related Questions

public static string TimeLine2(this HtmlHelper helper, string myString2) { StringBuilder myString3 = new StringBuilder();
Let's assume I have the string NSString* myString = @Hello,; How can I remove
Take the following code: public static string ReverseIt(string myString) { char[] foo = myString.ToCharArray();
I have the following code: public class AppDomainArgs : MarshalByRefObject { public string myString;
using this code: Java Server side: ... out = new PrintWriter(this.client.getOutputStream(), true); ... public
Hello if you search in an HashMap<String,String> for a specific value of a key-value-pair,
I'm new to Hibernate, and I can't get @OneToOne to function in our code.
I have an XML file which will output a string: <mystring> <manipulate type=caps> <string>Hello
I am trying to sort a List like this: public void Example() { string
I am trying to get the number of characters in a string including spaces.

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.