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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T01:42:12+00:00 2026-05-13T01:42:12+00:00

When using custom classes with read-only properties that are of type List or similar

  • 0

When using custom classes with read-only properties that are of type List or similar (ie, ObservableCollection), it is still possible to ‘get’ the variable and call an Add() method on it to alter the content.

Is there a way to stop this (without creating huge overloads of the List class) on ‘external’ access, or is it ‘best practice’ to handle lists in another way if they shouldn’t be edited outside of their class?

  • 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-13T01:42:12+00:00Added an answer on May 13, 2026 at 1:42 am

    When you decalre a reference type as readonly, only the reference to the object is readonly. The object itself can still be modified. In the case of a List, you can use the ReadOnlyCollection to expose the collection so that it cannot be modified (and you can still use a List internally to store/modify the data.

    FxCop actually has a rule to catch these situations:

    Do not declare read only mutable reference types

    private List<string> _internalList = new List<string>();
    
    public ReadOnlyCollection<string> ListProperty
    {
        get
        {
            return _inernalList.AsReadOnly();
        }
    }
    

    should do the trick.

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

Sidebar

Related Questions

I have authored some custom classes that I would like to create using XAML:
Question: Using Ruby it is simple to add custom methods to existing classes, but
I'm using custom class that subclass from UILabel. It works fine unless I change
I'm using custom renderer on JList, but none of components rendered are accessible. list.setCellRenderer(new
I have read that generally abstract classes should not be made Serializable in Java.
In my Android activity, I create a custom view that extends SurfaceView (using MonoDroid
I've read in a number of places that using the AppDelegate as the heart
I am using System.Linq.Dynamic to do custom where clauses from an ajax call in
When using custom assemblies in a visual studio project. How does one check in
I'm aware of using custom configuration values for my custom services, but what if

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.