473,657 Members | 2,423 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How do you stop a user from removing elements in a list<>?

Aimee Bailey
197 Recognized Expert New Member
In a library I am writing, I wish to stop people from removing item's from an List<> collection, is there an alternative or a way of overloading the Remove method that would stop other developers removing elements?

Aimee.
Oct 18 '10 #1
5 1645
Christian Binder
218 Recognized Expert New Member
Have you ever tried using List.AsReadOnly ()-method?

This won't allow Add, Remove, Clear, ...
Oct 18 '10 #2
Aimee Bailey
197 Recognized Expert New Member
perfect :) just used that in the property and it does the job, thanks!

Aimee.
Oct 18 '10 #3
GaryTexmo
1,501 Recognized Expert Top Contributor
Just to throw alternatives around, you can also create your own class to either wrap, or inherit from a List<>. If the former, you can provide your own functionality to expose only the access methods you wish. If the latter, I think you can override the Remove method and have it do nothing, or throw an exception so the programmer knows that method isn't allowed.
Oct 18 '10 #4
Aimee Bailey
197 Recognized Expert New Member
I actually considered that, allthough it meant overriding the Add, Remove and Insert routines.
Oct 18 '10 #5
Curtis Rutland
3,256 Recognized Expert Specialist
If you need a collection that you can edit but not delete from, here's something I've used in the past:

Expand|Select|Wrap|Line Numbers
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections;
  4. using System.Linq;
  5.  
  6. namespace Example
  7. {
  8.     class Program
  9.     {
  10.         static void Main()
  11.         {
  12.             ReadOnlyList<string> list = new ReadOnlyList<string>();
  13.             list.Add("something");
  14.             list.Add("else");
  15.             list.Add("test");
  16.             foreach (string s in list)
  17.                 Console.WriteLine(s);
  18.             var sub = list.Where(x => x.Contains("t"));
  19.             foreach (string s in sub)
  20.                 Console.WriteLine(s);
  21.             Console.ReadKey();
  22.         }
  23.     }
  24.  
  25.     public class ReadOnlyList<T> : IEnumerable<T>
  26.     {
  27.         private List<T> list;
  28.  
  29.         public ReadOnlyList()
  30.         {
  31.             list = new List<T>();
  32.         }
  33.  
  34.         public ReadOnlyList(IEnumerable<T> collection)
  35.         {
  36.             list = new List<T>(collection);
  37.         }
  38.  
  39.         public void Add(T item)
  40.         {
  41.             list.Add(item);
  42.         }
  43.  
  44.         public void AddRange(IEnumerable<T> collection)
  45.         {
  46.             list.AddRange(collection);
  47.         }
  48.  
  49.         public void Insert(int index, T item)
  50.         {
  51.             list.Insert(index, item);
  52.         }
  53.  
  54.         public void InsertRange(int index, IEnumerable<T> collection)
  55.         {
  56.             list.InsertRange(index, collection);
  57.         }
  58.  
  59.         public T this[int i]
  60.         {
  61.             get { return list[i]; }
  62.             set { list[i] = value; }
  63.         }
  64.  
  65.         public int Count { get { return list.Count; } }
  66.  
  67.         #region IEnumerable Members
  68.         public IEnumerator GetEnumerator()
  69.         {
  70.             return list.GetEnumerator();
  71.         }
  72.         #endregion
  73.  
  74.         #region IEnumerable<T> Members
  75.         IEnumerator<T> IEnumerable<T>.GetEnumerator()
  76.         {
  77.             return list.GetEnumerator();
  78.         }
  79.         #endregion
  80.     }
  81.  
  82.     public static class ExtensionMethods
  83.     {
  84.         public static ReadOnlyList<T> ToReadOnlyList<T>(this IEnumerable<T> collection)
  85.         {
  86.             return new ReadOnlyList<T>(collection);
  87.         }
  88.     }
  89. }
The basic idea is to implement IEnumerable<T>. That way, you get all the LINQ extension methods, and you can easily do foreach loops. Also, I've added an indexer, so you can treat it like an array if you want.

You can add/remove methods as needed, but you can see the pattern here.

It's a little different than inheriting from List, because with list, you still have the methods the base class has. Then, you'd have to throw exceptions or (worse) do nothing when those undesirable methods are called. In this way, you can just treat it like any other IEnumerable. System.Linq even includes a ToList extension method.

If you just wanted to be able to add, but not insert, or whatever, you could remove those methods. But if the AsReadOnly method works for you, that's a great solution too.

Also tacked on an extension method to turn other IEnumerables into a ReadOnlyList.
Oct 18 '10 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

14
5612
by: Dave | last post by:
Hello all, After perusing the Standard, I believe it is true to say that once you insert an element into a std::list<>, its location in memory never changes. This makes a std::list<> ideal for storing vertices of an arbitrary n-ary tree where a vertex contain pointers to its parent / children. These parent / child vertices need to stay put if we've got pointers to them somewhere! Am I correct in my assertion?
9
7877
by: Paul | last post by:
Hi, I feel I'm going around circles on this one and would appreciate some other points of view. From a design / encapsulation point of view, what's the best practise for returning a private List<as a property. Consider the example below, the class "ListTest" contains a private "List<>" called "strings" - it also provides a public method to add to that list,
7
57536
by: Andrew Robinson | last post by:
I have a method that needs to return either a Dictionary<k,vor a List<v> depending on input parameters and options to the method. 1. Is there any way to convert from a dictionary to a list without itterating through the entire collection and building up a list? 2. is there a common base class, collection or interface that can contain either/both of these collection types and then how do you convert or cast from the base to either a...
56
5144
by: Zytan | last post by:
Obviously you can't just use a simple for loop, since you may skip over elements. You could modify the loop counter each time an element is deleted. But, the loop ending condition must be checked on each iteration, since the Count changes as you delete elements. I would think it is guaranteed to be computed each time, and not cached. So, is this the best way?
45
18848
by: Zytan | last post by:
This returns the following error: "Cannot modify the return value of 'System.Collections.Generic.List<MyStruct>.this' because it is not a variable" and I have no idea why! Do lists return copies of their elements? Why can't I change the element itself? class Program { private struct MyStruct
35
5874
by: Lee Crabtree | last post by:
This seems inconsistent and more than a little bizarre. Array.Clear sets all elements of the array to their default values (0, null, whatever), whereas List<>.Clear removes all items from the list. That part makes a reasonable amount of sense, as you can't actually take items away from an Array. However, there doesn't seem to be a way to perform the same operation in one fell swoop on a List<>. For example:
0
8306
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7327
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4152
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1955
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.