Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
5k views

ReadOnlyCollection or IEnumerable for exposing member collections?

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 ...
8
votes
3answers
471 views

Is there anything magic about ReadOnlyCollection

Having this code... var b = new ReadOnlyCollection<int>(new[] { 2, 4, 2, 2 }); b[2] = 3; I get a compile error at the second line. I would expect a runtime error since ...
7
votes
5answers
556 views

What is a read only collection?

I ran a security code analyst i found myself having a CA2105 warning. I looked at the grade tampering example. I didn't realize you can assign int[] to a readonly int. I thought readonly was like the ...
5
votes
5answers
1k views

readonly list or unmodifiable list in .NET 4.0

From what I can tell, .NET 4.0 still lacks readonly lists. Can anyone shed light on why the framework still lacks this functionality? Isn't this one of the commonest pieces of functionality for domain ...
3
votes
3answers
145 views

FxCop: CA1033 - Microsoft's implementation of a ReadOnlyCollection violates this?

If you look at the code for a read-only collection it does not have an "Add" method, but instead defines the ICollection<T>.Add(T Value) method (explicit interface implementation). When I did ...
3
votes
1answer
241 views

List and ReadOnly property

List (and List) instances can be readonly, seeing ReadOnly property; methods throws exceptions in the case the collection have the property ReadOnly property. How can I create readonly List ...
3
votes
4answers
1k views

Why doesn't ReadOnlyCollection<> include methods like FindAll(), FindFirst(),

Following the suggestions of FxCop and my personal inclination I've been encouraging the team I'm coaching to use ReadOnlyCollections as much possible. If only so that recipients of the lists can't ...
2
votes
1answer
244 views

How does List<T> copy constructor function with ReadOnly lists?

The MSDN article doesn't really explain this. List<MyObject> FirstList = new List<MyObject>(); // Add items to FirstList. List<MyObject> SecondList = new ...
2
votes
2answers
237 views

How does ReadOnlyCollection hide Add and Remove methods

ReadOnlyCollection<T> realises the ICollection<T> interface which has methods like Add and Remove. I know how to hide methods from Intellisense using attributes, but how is it possible to ...
2
votes
2answers
71 views

Pattern for forcing adding to collection through method in C#

I have a class with a collection member. I would like to prevent external code from modifying this collection directly, instead using methods (which can perform the appropriate validation etc). This ...
2
votes
3answers
368 views

How to pass a byte array readonly?

Think of the following code: static int Main() { byte[] data = File.ReadAllBytes("anyfile"); SomeMethod(data); ... } static void SomeMethod(byte[] data) { data[0] = anybytevalue; ...
1
vote
0answers
41 views

protobuf-net: Failing to deserialize ReadOnlyCollection

I'm trying to serialize and deserialize a ReadOnlyCollection using protobuf-net. However an exception is thrown upon deserialization when protobuf-net attempts to cast a List into a ...
1
vote
5answers
147 views

Return ReadOnlyCollection from IList<>

OK, so List<> contains the AsReadOnly() which gives you the ReadOnlyCollection. What I need is to have a field of IList type, and a property which would return a ReadOnlyCollection for this list. ...
1
vote
1answer
495 views

NHibernate: use of IEnumerable as collection type results in error

I have a class which uses an ISet as a collection type as below: public class Client { private ISet<Contact> _contacts = new HashedSet<Contact>(); public virtual ...
1
vote
2answers
243 views

C#, SynchronizedReadOnlyCollection and its constructors

.net class SynchronizedReadOnlyCollection has 4 constructors. public SynchronizedReadOnlyCollection(); public SynchronizedReadOnlyCollection(object syncRoot); public ...
1
vote
2answers
204 views

Why is the SortedList(TKey,TValue).Keys property an IList(TKey) rather than a ReadOnlyCollection(TKey)?

The IList<T> interface includes access by index in addition to operations not supported by the SortedList<TKey, TValue>.Keys property such as Add, Remove, and Insert. A ...
1
vote
4answers
240 views

How to prevent a method caller from modifying a returned collection?

I have methods returning private collections to the caller and I want to prevent the caller from modifying the returned collections. private readonly Foo[] foos; public IEnumerable<Foo> ...
1
vote
5answers
1k views

object[] from ReadOnlyCollection<T>

I have an object that I ended up with via a reflection call: object readOnlyCollectionObject = propertyInfo.GetValue(someEntity, null); I know this object is a generic ReadOnlycollection. It could ...
0
votes
1answer
109 views

Hibernate readonly collection mapping

I'm taking the following many-to-many mapping example from this Hibernate Mapping Cheat Sheet: <class name="Foo" table="foo"> ... <set role="bars" table="foo_bar"> <key ...
0
votes
2answers
144 views

MVVM - Should I expose ReadOnlyObservableCollection, ReadOnlyCollection, ICollection, etc?

Basically, I was always in the understanding that you should return the expose base types whenever you can and worry about implementation details internally, which makes sense... But, I'm not sure ...
0
votes
0answers
76 views

C# Datagrid binding with listproperty of a list

my datagrid is the following: <DataGrid ItemsSource="{Binding Path=SelectedVariation.Value.Answers}" AutoGenerateColumns="false" Height="92" HorizontalAlignment="Left" Margin="7,123,0,0" ...
0
votes
1answer
143 views

Is it possible to modify a ReadOnlyCollection using reflection

I'm dealing with an SDK that keeps references to every object it creates, as long as the main connection object is in scope. Creating a new connection object periodically results in other resource ...
0
votes
5answers
174 views

A ReadOnlyCollection isn't readonly. How do i create a true ReadOnlyCollection?

I'm aware that readonly collection prevents adding/removing from a list but why doesn't it prevent the setting of properties of objects in the collection. ...
0
votes
4answers
525 views

Readonly collection properties that NHibernate can work with

My domain classes have collections that look like this: private List<Foo> _foos = new List<Foo>(); public virtual ReadOnlyCollection<Foo> Foos { get { return _foos.AsReadOnly(); } } ...
0
votes
2answers
1k views

FxCop CA2227 warning and ReadOnlyCollection<T>

In my VS2008 SP1, .NET 3.5 SP1 project, I have different classes that contain different properties. I use C#3.0 auto properties a lot. Some of these properties need to be collections. Since I want to ...
0
votes
2answers
350 views

how to make accessor for Dictionary in a way that returned Dictionary cannot be changed C# / 2.0

I thought of solution below because the collection is very very small. But what if it was big? private Dictionary<string, OfTable> _folderData = new Dictionary<string, OfTable>(); ...
0
votes
1answer
49 views

Does AutoMapper support ReadOnlyCollections?

I have tried various configurations, but cannot get it working. I am wondering if it is supported?
0
votes
2answers
888 views

BindingSource / BindingNavigator: How to prevent editing of bound DataSource?

I created a Data Source with VB.NET and Visual Studio 2005. I dragged the data source onto my dialog, and VS created the text boxes with the members of my linked Object, a ...